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
First registration shouldn't block the application using SBA
When pyctuator is starting up, it starts sending periodic registration
requests to SBA. Currently, the first registration is done on the "main
thread" while subsequent registrations are done asynchronously (using
a "daemonic" `threading.Timer()`.
If the registration's HTTP request is stuck until timing out, this blocks
the application until the this timeout.
Instead, all registration attempts, including the first one, should be
done asynchronously.
See #51
0 commit comments