File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
sqldev/src/main/java/org/utplsql/sqldev/runner Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 3030import org .utplsql .sqldev .dal .RealtimeReporterDao ;
3131import org .utplsql .sqldev .dal .RealtimeReporterEventConsumer ;
3232import org .utplsql .sqldev .model .DatabaseTools ;
33+ import org .utplsql .sqldev .model .SystemTools ;
3334import org .utplsql .sqldev .model .runner .PostRunEvent ;
3435import org .utplsql .sqldev .model .runner .PostSuiteEvent ;
3536import org .utplsql .sqldev .model .runner .PostTestEvent ;
@@ -308,11 +309,7 @@ public void runTestAsync() {
308309 consumerThread .setName ("realtime consumer" );
309310 consumerThread .start ();
310311 // avoid concurrency on output header table to fix issue #80
311- try {
312- Thread .sleep (100 );
313- } catch (InterruptedException e ) {
314- Thread .currentThread ().interrupt ();
315- }
312+ SystemTools .sleep (100 );
316313 // the producer
317314 producerThread = new Thread (() -> produce ());
318315 producerThread .setName ("realtime producer" );
You can’t perform that action at this time.
0 commit comments