You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LustreFileCreationCheckTask just sends asynchronous task result to Pushgateway Client without getting an answer back. So the task cannot determine if the Pushgateway Client received the result.
The Communication BaseHandler class could be extended with a pair of methods for synchronized message exchange wrapping the underlying calls to recv+send and send+recv calls e.g.
task.sync_send()
send()
recv()
pushgateway_client.sync_recv()
recv()
send()
The text was updated successfully, but these errors were encountered:
LustreFileCreationCheckTask just sends asynchronous task result to Pushgateway Client without getting an answer back. So the task cannot determine if the Pushgateway Client received the result.
The Communication BaseHandler class could be extended with a pair of methods for synchronized message exchange wrapping the underlying calls to recv+send and send+recv calls e.g.
The text was updated successfully, but these errors were encountered: