mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-27 08:17:17 +00:00
Do not try to restart not running queue if autokill is not set
This commit is contained in:
parent
4bf45eea36
commit
d831a79614
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ if __name__ == "__main__":
|
||||||
printarray3.append([curr_queue, "No data"])
|
printarray3.append([curr_queue, "No data"])
|
||||||
else:
|
else:
|
||||||
#If no info since long time, try to kill
|
#If no info since long time, try to kill
|
||||||
if int(time.time()) - no_info_modules[curr_queue] > threshold_stucked_module:
|
if args.autokill == 1 and int(time.time()) - no_info_modules[curr_queue] > threshold_stucked_module:
|
||||||
kill_module(curr_queue, None)
|
kill_module(curr_queue, None)
|
||||||
no_info_modules[curr_queue] = int(time.time())
|
no_info_modules[curr_queue] = int(time.time())
|
||||||
printarray3.append([curr_queue, "Stuck or idle, restarting in " + str(threshold_stucked_module - (int(time.time()) - no_info_modules[curr_queue])) + "s"])
|
printarray3.append([curr_queue, "Stuck or idle, restarting in " + str(threshold_stucked_module - (int(time.time()) - no_info_modules[curr_queue])) + "s"])
|
||||||
|
|
Loading…
Reference in a new issue