Skip to content

Commit

Permalink
Update futures_mpi.py
Browse files Browse the repository at this point in the history
  • Loading branch information
quaquel committed Mar 28, 2024
1 parent b2be0b4 commit 7c0eb9c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ema_workbench/em_framework/futures_mpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ def send_sentinel():
for handler in get_rootlogger().handlers:
if isinstance(handler, MPIHandler):
_logger.debug("sending sentinel")
handler.emit(record)
# handler.emit(record)
handler.communicator.send(record, 0, 0)


class MPIHandler(QueueHandler):
Expand Down

0 comments on commit 7c0eb9c

Please sign in to comment.