Skip to content

Commit

Permalink
Update RmiTaskRunner.java
Browse files Browse the repository at this point in the history
  • Loading branch information
tzaeschke committed May 3, 2020
1 parent 159ec3c commit b3d35b9
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tst/org/zoodb/test/testutil/rmi/RmiTaskRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ private static void runRmiTest(RmiTestTask task) {
// run test
try {
comp.executeTask(task);
} catch (RemoteException e) {
Thread.sleep(100);
} catch (RemoteException | InterruptedException e) {
throw DBLogger.wrap(e);
} finally {
//end process
Expand All @@ -131,7 +132,10 @@ private static void runRmiTest(RmiTestTask task) {
throw DBLogger.wrap(e);
}
}
try {
Thread.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
}


}

0 comments on commit b3d35b9

Please sign in to comment.