Skip to content

Commit

Permalink
Added new slots to response from actors#get_context()
Browse files Browse the repository at this point in the history
  • Loading branch information
mwvaughn committed Sep 2, 2020
1 parent d9ed767 commit bbe9bc5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions agavepy/actors.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,14 @@ def get_context():
context = AttrDict({
'raw_message': os.environ.get('MSG'),
'content_type': os.environ.get('_abaco_Content-Type'),
'actor_repo': os.environ.get('_abaco_container_repo'),
'actor_name': os.environ.get('_abaco_actor_name'),
'actor_id': os.environ.get('_abaco_actor_id'),
'actor_dbid': os.environ.get('_abaco_actor_dbid'),
'execution_id': os.environ.get('_abaco_execution_id'),
'worker_id': os.environ.get('_abaco_worker_id'),
'username': os.environ.get('_abaco_username'),
'state': os.environ.get('_abaco_actor_state'),
'actor_dbid': os.environ.get('_abaco_actor_dbid'),
'actor_id': os.environ.get('_abaco_actor_id'),
'raw_message_parse_log': ''
})

Expand Down

0 comments on commit bbe9bc5

Please sign in to comment.