File tree 1 file changed +7
-5
lines changed
sqldev/src/main/java/org/utplsql/sqldev/runner
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -283,16 +283,18 @@ class UtplsqlRunner implements RealtimeReporterEventConsumer {
283
283
def runTestAsync () {
284
284
// start tests when the GUI has been successfully initialized.
285
285
if (initGUI) {
286
- // the producer
287
- val Runnable producer = [|produce]
288
- producerThread = new Thread (producer)
289
- producerThread. name = " realtime producer"
290
- producerThread. start
291
286
// the consumer
292
287
val Runnable consumer = [|consume]
293
288
consumerThread = new Thread (consumer)
294
289
consumerThread. name = " realtime consumer"
295
290
consumerThread. start
291
+ // avoid concurrency on output header table to fix issue #80
292
+ Thread . sleep(100 )
293
+ // the producer
294
+ val Runnable producer = [|produce]
295
+ producerThread = new Thread (producer)
296
+ producerThread. name = " realtime producer"
297
+ producerThread. start
296
298
}
297
299
}
298
300
You can’t perform that action at this time.
0 commit comments