fix linter errors 🙄
This commit is contained in:
parent
a9e1e9b1b4
commit
f97720ac67
14
kill.py
14
kill.py
|
@ -22,15 +22,15 @@ def main():
|
|||
body = dict([pair.split(":") for pair in body.split(" ")])
|
||||
|
||||
if body["groupname"] == "concierge":
|
||||
try:
|
||||
pidfile = open('/run/supervisor.pid','r')
|
||||
pid = int(pidfile.readline());
|
||||
os.kill(pid, signal.SIGQUIT)
|
||||
except Exception as e:
|
||||
write_stdout('could not kill supervisor: %s\n' % e.strerror)
|
||||
try:
|
||||
pidfile = open('/run/supervisor.pid', 'r')
|
||||
pid = int(pidfile.readline())
|
||||
os.kill(pid, signal.SIGQUIT)
|
||||
except Exception as e:
|
||||
write_stdout('could not kill supervisor: %s\n' % e.strerror)
|
||||
|
||||
write_stdout('RESULT 2\nOK')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
main()
|
||||
|
|
7
main.py
7
main.py
|
@ -28,11 +28,12 @@ interval = 2
|
|||
# runtime stuff
|
||||
claims = []
|
||||
|
||||
|
||||
def svd_update():
|
||||
try:
|
||||
r = svd.supervisor.reloadConfig()
|
||||
except xmlrpc.client.Fault as e:
|
||||
if e.faultCode == 6: # SHUTDOWN_STATE
|
||||
if e.faultCode == 6: # SHUTDOWN_STATE
|
||||
print('svd shutting down')
|
||||
return
|
||||
else:
|
||||
|
@ -88,7 +89,7 @@ def stop_task(uuid):
|
|||
file = '/app/tasks.d/%s.conf' % uuid
|
||||
try:
|
||||
os.remove(file)
|
||||
except:
|
||||
except: # noqa
|
||||
print('error deleting task configfile', file)
|
||||
|
||||
# reload supervisord config
|
||||
|
@ -104,6 +105,7 @@ def release_task(uuid):
|
|||
|
||||
stop_task(uuid)
|
||||
|
||||
|
||||
def claim_task(uuid):
|
||||
global claims
|
||||
r = requests.post('%s/claim/%s' % (base_url, uuid)).json()
|
||||
|
@ -151,7 +153,6 @@ def loop(config):
|
|||
claim_task(task.get('uuid'))
|
||||
break
|
||||
|
||||
|
||||
time.sleep(interval)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue