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 30
30
import org .utplsql .sqldev .dal .RealtimeReporterDao ;
31
31
import org .utplsql .sqldev .dal .RealtimeReporterEventConsumer ;
32
32
import org .utplsql .sqldev .model .DatabaseTools ;
33
+ import org .utplsql .sqldev .model .SystemTools ;
33
34
import org .utplsql .sqldev .model .runner .PostRunEvent ;
34
35
import org .utplsql .sqldev .model .runner .PostSuiteEvent ;
35
36
import org .utplsql .sqldev .model .runner .PostTestEvent ;
@@ -308,11 +309,7 @@ public void runTestAsync() {
308
309
consumerThread .setName ("realtime consumer" );
309
310
consumerThread .start ();
310
311
// 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 );
316
313
// the producer
317
314
producerThread = new Thread (() -> produce ());
318
315
producerThread .setName ("realtime producer" );
You can’t perform that action at this time.
0 commit comments