Skip to content

Commit d20fd45

Browse files
committed
When using the local executor, there is no need to send UDP packet on
various interfaces when the loopback will suffice
1 parent 5d90cdd commit d20fd45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/psij/executors/local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def submit(self, job: Job) -> None:
284284
'script_dir': str(self._work_dir),
285285
'us_file': self._status_updater.update_file_name,
286286
'us_port': self._status_updater.update_port,
287-
'us_addrs': ', '.join(self._status_updater.ips),
287+
'us_addrs': '127.0.0.1',
288288
'debug': logger.isEnabledFor(logging.DEBUG),
289289
'nodefile': nodefile
290290
}

0 commit comments

Comments
 (0)