Skip to content

Commit

Permalink
Fix manager_poll
Browse files Browse the repository at this point in the history
  • Loading branch information
shuds13 committed Apr 3, 2020
1 parent 6f87ff3 commit 42b6582
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libensemble/executors/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def manager_poll(self, comm):
else:
logger.warning("Received unrecognized manager signal {} - "
"ignoring".format(man_signal))
comm.push_back(mtag)
comm.push_to_buffer(mtag)

def get_task(self, taskid):
""" Returns the task object for the supplied task ID """
Expand Down
2 changes: 1 addition & 1 deletion libensemble/message_numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
FINISHED_PERSISTENT_GEN_TAG: "Persis gen finished",
MAN_SIGNAL_FINISH: "Manager killed on finish",
MAN_SIGNAL_KILL: "Manager killed task",
WORKER_KILL_ON_ERR: " Worker killed task on Error",
WORKER_KILL_ON_ERR: "Worker killed task on Error",
WORKER_KILL_ON_TIMEOUT: "Worker killed task on Timeout",
WORKER_KILL: "Worker killed",
TASK_FAILED: "Task Failed",
Expand Down

0 comments on commit 42b6582

Please sign in to comment.