We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I do python manage.py runserver , the localhost takes a long time to respond (>15 minutes) and in the end, I get this error.
python manage.py runserver
The exception location is pyrax/http.py in request, line 76
pyrax/http.py in request, line 76
Though, I run these in my python manage.py shell , it connects without any issue.
python manage.py shell
import pyrax, os pyrax.set_setting("identity_type", "rackspace") pyrax.set_default_region('HKG') pyrax.cloudfiles.set_temp_url_key("some_key") pyrax.set_credentials(os.environ["RACKSPACE_USERNAME"],os.environ["RACKSPACE_API_KEY"]) some_container = pyrax.cloudfiles.get_container("some-container")
Further figuring out, the issue is in this line pyrax.cloudfiles.set_temp_url_key("some_key")
pyrax.cloudfiles.set_temp_url_key("some_key")
I am using temporary_url to upload files directly via browser, it did not give this error until now.
The text was updated successfully, but these errors were encountered:
Now it is giving a timeout error in my website.
Sorry, something went wrong.
No branches or pull requests
When I do
python manage.py runserver
, the localhost takes a long time to respond (>15 minutes) and in the end, I get this error.The exception location is
pyrax/http.py in request, line 76
Though, I run these in my
python manage.py shell
, it connects without any issue.import pyrax, os pyrax.set_setting("identity_type", "rackspace") pyrax.set_default_region('HKG') pyrax.cloudfiles.set_temp_url_key("some_key") pyrax.set_credentials(os.environ["RACKSPACE_USERNAME"],os.environ["RACKSPACE_API_KEY"]) some_container = pyrax.cloudfiles.get_container("some-container")
Further figuring out, the issue is in this line
pyrax.cloudfiles.set_temp_url_key("some_key")
I am using temporary_url to upload files directly via browser, it did not give this error until now.
The text was updated successfully, but these errors were encountered: