Skip to content

Commit

Permalink
ns
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Sep 26, 2023
1 parent 4496e35 commit 099c7d5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,13 @@ public void testNotificationAndRpcRelay2Transit(Class<? extends RELAY> cl) throw

MethodCall call=new MethodCall(ServerObject.class.getMethod("foo"));
System.out.println("B: call foo method on A");
Object rsp = rpcb.callRemoteMethod(a.getAddress(), call, new RequestOptions(ResponseMode.GET_ALL,5000));
Object rsp = rpcb.callRemoteMethod(a.getAddress(), call, new RequestOptions(ResponseMode.GET_ALL, 2000));
System.out.println("RSP is: " + rsp );

System.out.println("B: sending message 0 to the site master of SFO");
Address sm_sfo=new SiteMaster(SFO);
System.out.println("B: call foo method on SFO master site");
rsp = rpcb.callRemoteMethod(sm_sfo, call, new RequestOptions(ResponseMode.GET_ALL,15000));
rsp = rpcb.callRemoteMethod(sm_sfo, call, new RequestOptions(ResponseMode.GET_ALL, 5000));
System.out.println("RSP is: " + rsp );

System.out.println("B: call foo method on all members in site LON");
Expand Down

0 comments on commit 099c7d5

Please sign in to comment.