Cesar Canassa
Cesar Canassa
Hmm, did you try to enable the Django debug mode and reload the server? With the debug mode on you should get a full traceback on any error and that...
I already had that problem before, this happens when you are trying to get a package version that was not fetched from the Celery beat task that runs every night....
I think that if the package is not local, we could return a redirect to the PyPI server and start an background task to fetch the new package. What do...
@wiliamsouza What about sending us a pull request? :smiley:
I believe this is a duplicated of #165
You probably set your `LOCALSHOP_VERSIONING_TYPE` to something else than `None`.
Thanks fly. @mvantellingen This issue was caused by [PR number 147](https://github.com/mvantellingen/localshop/pull/147) which fixed a problem in the Index view but now stops package with "invalid" names from being uploaded. Maybe...
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,...
Thanks for the feedback. I completely agree that the README is not very clear and needs some love. I will start working on it as soon as possible.
I am also getting this error when I tried to enable the retry system: ``` cfg, err := config.LoadDefaultConfig( context.TODO(), config.WithRetryer(func() aws.Retryer { return retry.NewStandard(func(o *retry.StandardOptions) { o.MaxAttempts = 10...