Skip to content

Commit

Permalink
fixed alive handler
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander authored and dnouri committed Mar 22, 2018
1 parent 1e20feb commit bba4b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion palladium/server.py
Expand Up @@ -232,7 +232,7 @@ def alive(alive=None):
obj = process_store.get(attr)
if obj is not None:
obj_info = {}
obj_info['updated'] = process_store.mtime['model'].isoformat()
obj_info['updated'] = process_store.mtime[attr].isoformat()
if hasattr(obj, '__metadata__'):
obj_info['metadata'] = obj.__metadata__
info[attr] = obj_info
Expand Down

0 comments on commit bba4b94

Please sign in to comment.