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
Some corporate proxies deny access to pypi.org. In these cases, solara run app.py hangs while it tries to make contact with pypi to check whether its version is up-to-date. Ideally, the call to requests.get() occurs with timeout=1 or something very short & reasonable to prevent inordinate app load times, without requiring an explicit --no-check-version (which is unintuitive without debugging)
The text was updated successfully, but these errors were encountered:
I agree, that can be very annoying. I think it can be even shorter, max 200ms, because it's fine is we miss it. Do you plan to open a PR for that, or would you rather have us look at it?
Some corporate proxies deny access to
pypi.org
. In these cases,solara run app.py
hangs while it tries to make contact with pypi to check whether its version is up-to-date. Ideally, the call torequests.get()
occurs withtimeout=1
or something very short & reasonable to prevent inordinate app load times, without requiring an explicit--no-check-version
(which is unintuitive without debugging)The text was updated successfully, but these errors were encountered: