Skip to content

Commit

Permalink
modify listProcedures
Browse files Browse the repository at this point in the history
  • Loading branch information
lipanpan03 committed Nov 29, 2023
1 parent 1d5cf2e commit e19f676
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ public static void listProcedures(TuGraphDbRpcClient client) throws Exception {
log.info("testListProcedures : " + result);
JSONArray array = JSONObject.parseArray(result);
assert array.size()==2;
Thread.sleep(3000);
String result2 = client.listProcedures("CPP", "v1", "default", host+":29093");
String result3 = client.listProcedures("CPP", "v1", "default", host+":29094");
JSONArray array2 = JSONObject.parseArray(result2), array3 = JSONObject.parseArray(result3);
Expand Down Expand Up @@ -266,6 +265,7 @@ public static void haClientTest() throws Exception {
importDataFromContent(client);

loadProcedure(client);
Thread.sleep(5000);
callProcedure(client);
listProcedures(client);
deleteProcedure(client);
Expand Down

0 comments on commit e19f676

Please sign in to comment.