I have been looking into this solution, and we use it on several customers, thank you very much!
On line 538 of outset (as part of on_demand argument), this is done:
open(cleanup_trigger, "w").close()
time.sleep(0.5)
if os.path.exists(cleanup_trigger):
cleanup(cleanup_trigger)
I might not now all about python, but to me it looks like you are creating the cleanup_trigger file, and deleting it again. What am I missing?
I have been looking into this solution, and we use it on several customers, thank you very much!
On line 538 of
outset(as part ofon_demandargument), this is done:I might not now all about python, but to me it looks like you are creating the cleanup_trigger file, and deleting it again. What am I missing?