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
Running Localshop with CELERY_ALWAYS_EAGER=True is not really an option. The main problem is that we don't have enough time in a single request to fetch the package metadata from PyPI, download the binaries and return the response to pip.
That may work if the package is small and does not contains many releases, but if the package is big (e.g.: Celery) The request will take too long which will cause pip to timeout and retry the request, causing Localshop to start another slow process in parallel.
We should have three options:
This will remove the option LOCALSHOP_ISOLATE (which is equal to CELERY_ALWAYS_EAGER afaik)
The package update queue should just be a simple django modal and should be available in the management interface.
The text was updated successfully, but these errors were encountered: