Skip to content
Snippets Groups Projects
Commit a5692f60 authored by Darek Marcinkiewicz's avatar Darek Marcinkiewicz
Browse files

meaner4: not sure - either bugfix or python protobuf leak workaround

parent 039c8134
No related branches found
No related tags found
No related merge requests found
......@@ -50,8 +50,7 @@ class Meaner(MeanerBase):
while True:
msg = self.socket.recv(zmq.NOBLOCK)
params_values = paramsvalues_pb2.ParamsValues()
params_values.ParseFromString(msg)
params_values = paramsvalues_pb2.ParamsValues.FromString(msg)
for param_value in params_values.param_values:
log_param, index = self.ipk.adjust_param_index(param_value.param_no)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment