Commit 173244ab authored by Nicolas Wavrant's avatar Nicolas Wavrant

slaprunner: listener execution is depending on which process ended

Do not try to write *_info.json files every time a process stops
parent c6577468
...@@ -155,7 +155,7 @@ mode = 0644 ...@@ -155,7 +155,7 @@ mode = 0644
[template-listener-slapgrid] [template-listener-slapgrid]
recipe = hexagonit.recipe.download recipe = hexagonit.recipe.download
url = ${:_profile_base_location_}/template/${:filename} url = ${:_profile_base_location_}/template/${:filename}
md5sum = 46495fb218fc771547c5ef861cc30933 md5sum = 8ab7c2930077017cc51daeeaff899888
location = ${buildout:parts-directory}/${:_buildout_section_name_} location = ${buildout:parts-directory}/${:_buildout_section_name_}
filename = listener_slapgrid.py.in filename = listener_slapgrid.py.in
download-only = true download-only = true
......
...@@ -17,23 +17,26 @@ def write_stderr(s): ...@@ -17,23 +17,26 @@ def write_stderr(s):
sys.stderr.flush() sys.stderr.flush()
def write_slapgrid_result(): def write_slapgrid_result(process):
server = xmlrpclib.Server("http://{{- supervisord['server'] -}}") server = xmlrpclib.Server("http://{{- supervisord['server'] -}}")
# Tuple of tuples containing 2 elements : process name and the path of its info file # Tuple of tuples containing 2 elements : process name and the path of its info file
watch_processes = (("slapgrid-sr", "{{- slaprunner['software_info_json'] -}}"), json_files = dict([("slapgrid-sr", "{{- slaprunner['software_info_json'] -}}"),
("slapgrid-cp", "{{- slaprunner['instance_info_json'] -}}")) ("slapgrid-cp", "{{- slaprunner['instance_info_json'] -}}")])
for process, file in watch_processes: info = server.supervisor.getProcessInfo(process)
info = server.supervisor.getProcessInfo(process) result = dict()
result = dict() result['last_build'] = datetime.datetime.fromtimestamp(info['stop']).strftime("%Y-%m-%d %H:%M:%S")
result['last_build'] = datetime.datetime.fromtimestamp(info['stop']).strftime("%Y-%m-%d %H:%M:%S") result['success'] = (1 if info['statename'] in ("FATAL", "STARTING", "BACKOFF") else info['exitstatus'])
result['success'] = (1 if info['statename'] == "FATAL" else info['exitstatus']) open(json_files[process], 'w').write(json.dumps(result))
open(file, 'w').write(json.dumps(result))
def main(): def main():
while 1: while 1:
headers, payload = writer.wait() headers, payload = writer.wait()
write_slapgrid_result() try:
processname = dict(x.split(':') for x in payload.split())['processname']
write_slapgrid_result(processname)
except:
pass
writer.ok() writer.ok()
if __name__ == '__main__': if __name__ == '__main__':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment