From 4ed0e31aa5c94ea11cf2d6e96e459e7a941cce44 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Wed, 12 May 2021 10:37:06 -0500 Subject: [PATCH] bug fix ... --- pipeline.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pipeline.py b/pipeline.py index 3644a7e..9aad2de 100644 --- a/pipeline.py +++ b/pipeline.py @@ -652,17 +652,17 @@ if __name__ == '__main__' : DIRTY =1 jobs = [job for job in jobs if job.is_alive()] time.sleep(2) - if DIRTY: - print (["..:: jobs finished "]) + # if DIRTY: + # print (["..:: jobs finished "]) # # We need to harmonize the keys if any at all in this case we do this for shuffle or generate operations # - print (['finalize' in SYS_ARGS, ('generate' in SYS_ARGS or 'shuffle' in SYS_ARGS) ]) + if 'autopilot' in SYS_ARGS or 'finalize' in SYS_ARGS or ('generate' in SYS_ARGS or 'shuffle' in SYS_ARGS) : # # We should pull all the primary keys and regenerate them in order to insure some form of consistency # - + print (["..:: jobs finished "]) (Components()).finalize(args) # finalize(args) pass