Skip to content

Commit

Permalink
modify listProcedures
Browse files Browse the repository at this point in the history
  • Loading branch information
lipanpan03 committed Nov 21, 2023
1 parent a543aef commit 1477c92
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ public static void listProcedures(TuGraphDbRpcClient client) throws Exception {
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);
assert array2.size()==2 || array3.size()==2;
log.info("testListProcedures2 : " + result2);
log.info("testListProcedures3 : " + result3);
assert (array2.size()==2 || array3.size()==2);
}

public static void deleteProcedure(TuGraphDbRpcClient client) throws Exception {
Expand Down

0 comments on commit 1477c92

Please sign in to comment.