aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/music/rest/RestMusicQAPI.java
diff options
context:
space:
mode:
authorBharath Balasubramanian <bharathb@research.att.com>2018-03-22 12:03:55 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-22 12:03:55 +0000
commit7a39f41a061b47b030961546782322a1139af7f5 (patch)
tree18f6f2860c27303caa9bf1f624e2f4e383b55f16 /src/main/java/org/onap/music/rest/RestMusicQAPI.java
parenta414c36cb48cd395c6c9db37ad3a50e2abb67874 (diff)
parentde47cea9e656dabfbf3608287238041ab263f05e (diff)
Merge "Fix for HAS to run its CSIT"
Diffstat (limited to 'src/main/java/org/onap/music/rest/RestMusicQAPI.java')
-rwxr-xr-xsrc/main/java/org/onap/music/rest/RestMusicQAPI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/music/rest/RestMusicQAPI.java b/src/main/java/org/onap/music/rest/RestMusicQAPI.java
index 9a4f6c6b..39233dc5 100755
--- a/src/main/java/org/onap/music/rest/RestMusicQAPI.java
+++ b/src/main/java/org/onap/music/rest/RestMusicQAPI.java
@@ -253,6 +253,6 @@ public class RestMusicQAPI {
@ApiParam(value="Key Space",required=true) @PathParam("keyspace") String keyspace,
@ApiParam(value="Table Name",required=true) @PathParam("tablename") String tablename,
@Context HttpServletResponse response) throws Exception{
- return new RestMusicDataAPI().dropTable(version,minorVersion,patchVersion,aid, ns, userId, password, tabObj, keyspace, tablename,response);
+ return new RestMusicDataAPI().dropTable(version,minorVersion,patchVersion,aid, ns, userId, password, keyspace, tablename,response);
}
}