~ubuntu-branches/ubuntu/vivid/swift/vivid-updates

« back to all changes in this revision

Viewing changes to swift/common/storage_policy.py

  • Committer: Package Import Robot
  • Author(s): James Page, Chuck Short, James Page
  • Date: 2014-10-06 10:06:11 UTC
  • mfrom: (1.2.31)
  • Revision ID: package-import@ubuntu.com-20141006100611-wdzkkuoru7ubtlml
Tags: 2.1.0-0ubuntu1
[ Chuck Short ]
* debian/patches/fix-doc-no-network.patch: Refreshed.
* debian/control: Add python-oslosphinx as a build dependency.

[ James Page ]
* New upstream release for OpenStack Juno.
* d/copyright: Add linebreaks to fixup file-without-copyright-
  information warning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
from swift.common.utils import config_true_value, SWIFT_CONF_FILE
19
19
from swift.common.ring import Ring
20
20
 
21
 
POLICY = 'X-Storage-Policy'
22
 
POLICY_INDEX = 'X-Backend-Storage-Policy-Index'
23
21
LEGACY_POLICY_NAME = 'Policy-0'
24
22
VALID_CHARS = '-' + string.letters + string.digits
25
23