pyrax icon indicating copy to clipboard operation
pyrax copied to clipboard

The Python SDK for the Rackspace Cloud

Results 75 pyrax issues
Sort by recently updated
recently updated
newest added

There appears to be a bug in the caching of context objects. Consider the code below. If I add cached=False to the second call for get_client('nova', region), it works as...

When files are deleting from the "source", and `sync_folder_to_container()` executes, files at the destination but not at the source are not removed. Example: 1. Create `sample_container` directory on local computer...

I'm using pyrax 1.9.4. My script uses copy_object(from_container, name, to_container) and catches NoSuchObject. However, when the object name contains a leading forward slash (ie "/path/to/file") it's throwing NoSuchContainer. OK, it's...

As part of my threaded app, I am reading a timestamp in metadata on objects before processing them and at the end setting a new timestamp. As of 1.9.3 I...

I hate to provide only a half-researched issue but I am unable to look further into it at the moment. I have a multi-threaded program that downloads, does some processing,...

needs_info

When using credentials file I get: ``` python Traceback (most recent call last): pyrax.set_credential_file(location, region) File "/usr/local/lib/python2.7/dist-packages/pyrax/__init__.py", line 429, in _wrapped return fnc(*args, **kwargs) File "/usr/local/lib/python2.7/dist-packages/pyrax/__init__.py", line 525, in set_credential_file...

dependency_bug

http://api.rackspace.com/api-ref-load-balancers.html#certificate_mappings Multiple certificates are now able to be loaded in a loadbalancer under certificatemappings. I'm not seeing any support for this option in the pyrax SDK.

enhancement

There seems to be a problem with using self.address which returns the public ip address of the node ( self.address ), with trying to match it against the private address...

I wasn't able to authenticate without specifying an `auth_endpoint` and `tenant_id`. This PR aims at providing that information to future users.

needs_revision
documentation

Per the docs, ConfigParser is now configparser in 3.x. **init**.py, base_identity.py, and identity/rax_identity.py should be modified for: ``` python try: import configparser except ImportError: import ConfigParser as configparser ``` And...