Skip to content

Commit

Permalink
Call_method in service now allows threads.
Browse files Browse the repository at this point in the history
  • Loading branch information
Peguen committed Oct 2, 2024
1 parent 60f7835 commit 08570ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lang/python/core/src/ecal_wrap.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,9 @@ PyObject* client_call_method(PyObject* /*self*/, PyObject* args) // (client_ha
PyArg_ParseTuple(args, "nsy#i", &client_handle, &method_name, &request, &request_len, &timeout);

bool called_method{ false };
called_method = client_call_method(client_handle, method_name, request, (int)request_len, timeout);
Py_BEGIN_ALLOW_THREADS
called_method = client_call_method(client_handle, method_name, request, (int)request_len, timeout);
Py_END_ALLOW_THREADS

return(Py_BuildValue("i", called_method));
}
Expand Down

0 comments on commit 08570ca

Please sign in to comment.