Skip to content

Commit edd0a3f

Browse files
authored
Update hl_api_server.py
The proposed changes by @babsey
1 parent c536db0 commit edd0a3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pynest/nest/server/hl_api_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def do_call(call_name, args=[], kwargs={}):
261261
log(call_name, f"local call, args={args}, kwargs={kwargs}")
262262
master_response = call(*args, **kwargs)
263263

264-
response = [master_response]
264+
response = [nest.serialize_data(master_response)]
265265
if mpi_comm is not None:
266266
log(call_name, "waiting for response gather")
267267
response = mpi_comm.gather(response[0], root=0)

0 commit comments

Comments
 (0)