File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -284,7 +284,6 @@ def check_output_file():
284
284
output_file_found .set ()
285
285
except WaiterError :
286
286
waiter_error_catched .set ()
287
- pass
288
287
289
288
def check_failure_file ():
290
289
try :
@@ -297,15 +296,16 @@ def check_failure_file():
297
296
failure_file_found .set ()
298
297
except WaiterError :
299
298
waiter_error_catched .set ()
300
- pass
301
299
302
300
output_thread = threading .Thread (target = check_output_file )
303
301
failure_thread = threading .Thread (target = check_failure_file )
304
302
305
303
output_thread .start ()
306
304
failure_thread .start ()
307
305
308
- while not output_file_found .is_set () and not failure_file_found .is_set () and not waiter_error_catched .is_set ():
306
+ while (not output_file_found .is_set () and
307
+ not failure_file_found .is_set ()
308
+ and not waiter_error_catched .is_set ()):
309
309
time .sleep (1 )
310
310
311
311
if output_file_found .is_set ():
You can’t perform that action at this time.
0 commit comments