Skip to content

Commit

Permalink
Adjust server log reading rate
Browse files Browse the repository at this point in the history
  • Loading branch information
lochana-chathura committed Nov 22, 2024
1 parent 55d398b commit 54adcc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public void run() {
}
feedAndPrint(s);
} else {
TimeUnit.MILLISECONDS.sleep(1);
TimeUnit.MICROSECONDS.sleep(400);
}
}
String s = bufferedReader.readLine();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* Tests order of execution of listener methods.
*/
public class ModuleExecutionFlowTests extends BaseTest {
public static final int TIMEOUT = 10000;
public static final int TIMEOUT = 1000;

@Test
public void testModuleExecutionOrder() throws BallerinaTestException {
Expand Down

0 comments on commit 54adcc3

Please sign in to comment.