Update arke.py's while loop to be always on.

This commit is contained in:
jowj 2018-10-07 16:27:40 -05:00
parent eb47ee8312
commit c0694828ea

View File

@ -17,7 +17,8 @@ def monitor_AllTargets(monitoringtargets):
return responseTable
while True:
is_on = True
while is_on:
datastore = monitor_AllTargets(arkevars.httpTargets)
json_string = json.dumps(datastore)