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
What would you like to see added in this software?
Currently, the common way to communicate with the server is to call add_project(), which blocks and waits for a server response. In (rare) cases where the server is unavailable, this can cause a delay equal to the value of the request timeout.
I think in the long run, a better solution would be:
What would you like to see added in this software?
Currently, the common way to communicate with the server is to call
add_project()
, which blocks and waits for a server response. In (rare) cases where the server is unavailable, this can cause a delay equal to the value of the request timeout.I think in the long run, a better solution would be:
concurrent.futures.ThreadPoolExecutor
to avoid blocking the main thread.Do you have any interest in helping implement the feature?
Yes
Additional information / screenshots
No response
The text was updated successfully, but these errors were encountered: