Skip to content

Commit

Permalink
send write_n2 option to server
Browse files Browse the repository at this point in the history
  • Loading branch information
Asthelen committed Mar 28, 2024
1 parent 91c8546 commit 900ff3c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mphys/network/zmq_pbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,11 @@ class MPhysZeroMQServer(Server):
def __init__(self, port, get_om_group_function_pointer,
ignore_setup_warnings = False,
ignore_runtime_warnings = False,
rerun_initial_design = False):
rerun_initial_design = False,
write_n2 = False):

super().__init__(get_om_group_function_pointer, ignore_setup_warnings,
ignore_runtime_warnings, rerun_initial_design)
ignore_runtime_warnings, rerun_initial_design, write_n2)
self._setup_zeromq_socket(port)

def _setup_zeromq_socket(self, port):
Expand Down

0 comments on commit 900ff3c

Please sign in to comment.