Jake
05/10/2022, 6:05 PMKevin Kho
05/10/2022, 6:12 PMJake
05/10/2022, 6:16 PMflow.serialized_hash()
. I’ve noticed that sometimes the hash changes even though there were no changes in the code. Does it have anything to do with the pickle? I noticed that even when there are no code changes, the pickles contents changed.Kevin Kho
05/10/2022, 6:21 PMdatetime.datetime.now()
in your schedule or something? Some timestamps that changes value from run to runJake
05/10/2022, 6:24 PM# where register_flows is a function that calls flow.register()
threads = []
for project in projects:
t = threading.Thread(
target=register_flows, args=(project)
)
threads.append(t)
t.start()
for thread in threads:
thread.join()
Kevin Kho
05/13/2022, 7:07 PMJake
05/13/2022, 8:52 PMKevin Kho
05/13/2022, 9:45 PM