swift 2.32.0__py2.py3-none-any.whl → 2.34.0__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- swift/account/auditor.py +11 -0
- swift/account/reaper.py +11 -1
- swift/account/replicator.py +22 -0
- swift/account/server.py +13 -12
- swift-2.32.0.data/scripts/swift-account-audit → swift/cli/account_audit.py +6 -2
- swift-2.32.0.data/scripts/swift-config → swift/cli/config.py +1 -1
- swift-2.32.0.data/scripts/swift-dispersion-populate → swift/cli/dispersion_populate.py +6 -2
- swift-2.32.0.data/scripts/swift-drive-audit → swift/cli/drive_audit.py +12 -3
- swift-2.32.0.data/scripts/swift-get-nodes → swift/cli/get_nodes.py +6 -2
- swift/cli/info.py +131 -3
- swift-2.32.0.data/scripts/swift-oldies → swift/cli/oldies.py +6 -3
- swift-2.32.0.data/scripts/swift-orphans → swift/cli/orphans.py +7 -2
- swift-2.32.0.data/scripts/swift-recon-cron → swift/cli/recon_cron.py +9 -18
- swift-2.32.0.data/scripts/swift-reconciler-enqueue → swift/cli/reconciler_enqueue.py +2 -3
- swift/cli/relinker.py +1 -1
- swift/cli/reload.py +141 -0
- swift/cli/ringbuilder.py +24 -0
- swift/common/daemon.py +12 -2
- swift/common/db.py +14 -9
- swift/common/db_auditor.py +2 -2
- swift/common/db_replicator.py +6 -0
- swift/common/exceptions.py +12 -0
- swift/common/http_protocol.py +76 -3
- swift/common/manager.py +120 -5
- swift/common/memcached.py +24 -25
- swift/common/middleware/account_quotas.py +144 -43
- swift/common/middleware/backend_ratelimit.py +166 -24
- swift/common/middleware/catch_errors.py +1 -3
- swift/common/middleware/cname_lookup.py +3 -5
- swift/common/middleware/container_sync.py +6 -10
- swift/common/middleware/crypto/crypto_utils.py +4 -5
- swift/common/middleware/crypto/decrypter.py +4 -5
- swift/common/middleware/crypto/kms_keymaster.py +2 -1
- swift/common/middleware/proxy_logging.py +57 -43
- swift/common/middleware/ratelimit.py +6 -7
- swift/common/middleware/recon.py +6 -7
- swift/common/middleware/s3api/acl_handlers.py +10 -1
- swift/common/middleware/s3api/controllers/__init__.py +3 -0
- swift/common/middleware/s3api/controllers/acl.py +3 -2
- swift/common/middleware/s3api/controllers/logging.py +2 -2
- swift/common/middleware/s3api/controllers/multi_upload.py +31 -15
- swift/common/middleware/s3api/controllers/obj.py +20 -1
- swift/common/middleware/s3api/controllers/object_lock.py +44 -0
- swift/common/middleware/s3api/s3api.py +6 -0
- swift/common/middleware/s3api/s3request.py +190 -74
- swift/common/middleware/s3api/s3response.py +48 -8
- swift/common/middleware/s3api/s3token.py +2 -2
- swift/common/middleware/s3api/utils.py +2 -1
- swift/common/middleware/slo.py +508 -310
- swift/common/middleware/staticweb.py +45 -14
- swift/common/middleware/tempauth.py +6 -4
- swift/common/middleware/tempurl.py +134 -93
- swift/common/middleware/x_profile/exceptions.py +1 -4
- swift/common/middleware/x_profile/html_viewer.py +9 -10
- swift/common/middleware/x_profile/profile_model.py +1 -2
- swift/common/middleware/xprofile.py +1 -2
- swift/common/request_helpers.py +101 -8
- swift/common/statsd_client.py +207 -0
- swift/common/storage_policy.py +1 -1
- swift/common/swob.py +5 -2
- swift/common/utils/__init__.py +331 -1774
- swift/common/utils/base.py +138 -0
- swift/common/utils/config.py +443 -0
- swift/common/utils/logs.py +999 -0
- swift/common/utils/timestamp.py +23 -2
- swift/common/wsgi.py +19 -3
- swift/container/auditor.py +11 -0
- swift/container/backend.py +136 -31
- swift/container/reconciler.py +11 -2
- swift/container/replicator.py +64 -7
- swift/container/server.py +276 -146
- swift/container/sharder.py +86 -42
- swift/container/sync.py +11 -1
- swift/container/updater.py +12 -2
- swift/obj/auditor.py +20 -3
- swift/obj/diskfile.py +63 -25
- swift/obj/expirer.py +154 -47
- swift/obj/mem_diskfile.py +2 -1
- swift/obj/mem_server.py +1 -0
- swift/obj/reconstructor.py +28 -4
- swift/obj/replicator.py +63 -24
- swift/obj/server.py +76 -59
- swift/obj/updater.py +12 -2
- swift/obj/watchers/dark_data.py +72 -34
- swift/proxy/controllers/account.py +3 -2
- swift/proxy/controllers/base.py +254 -148
- swift/proxy/controllers/container.py +274 -289
- swift/proxy/controllers/obj.py +120 -166
- swift/proxy/server.py +17 -13
- {swift-2.32.0.dist-info → swift-2.34.0.dist-info}/AUTHORS +14 -4
- {swift-2.32.0.dist-info → swift-2.34.0.dist-info}/METADATA +9 -7
- {swift-2.32.0.dist-info → swift-2.34.0.dist-info}/RECORD +97 -120
- {swift-2.32.0.dist-info → swift-2.34.0.dist-info}/entry_points.txt +39 -0
- swift-2.34.0.dist-info/pbr.json +1 -0
- swift-2.32.0.data/scripts/swift-account-auditor +0 -23
- swift-2.32.0.data/scripts/swift-account-info +0 -52
- swift-2.32.0.data/scripts/swift-account-reaper +0 -23
- swift-2.32.0.data/scripts/swift-account-replicator +0 -34
- swift-2.32.0.data/scripts/swift-account-server +0 -23
- swift-2.32.0.data/scripts/swift-container-auditor +0 -23
- swift-2.32.0.data/scripts/swift-container-info +0 -56
- swift-2.32.0.data/scripts/swift-container-reconciler +0 -21
- swift-2.32.0.data/scripts/swift-container-replicator +0 -34
- swift-2.32.0.data/scripts/swift-container-server +0 -23
- swift-2.32.0.data/scripts/swift-container-sharder +0 -37
- swift-2.32.0.data/scripts/swift-container-sync +0 -23
- swift-2.32.0.data/scripts/swift-container-updater +0 -23
- swift-2.32.0.data/scripts/swift-dispersion-report +0 -24
- swift-2.32.0.data/scripts/swift-form-signature +0 -20
- swift-2.32.0.data/scripts/swift-init +0 -119
- swift-2.32.0.data/scripts/swift-object-auditor +0 -29
- swift-2.32.0.data/scripts/swift-object-expirer +0 -33
- swift-2.32.0.data/scripts/swift-object-info +0 -60
- swift-2.32.0.data/scripts/swift-object-reconstructor +0 -33
- swift-2.32.0.data/scripts/swift-object-relinker +0 -23
- swift-2.32.0.data/scripts/swift-object-replicator +0 -37
- swift-2.32.0.data/scripts/swift-object-server +0 -27
- swift-2.32.0.data/scripts/swift-object-updater +0 -23
- swift-2.32.0.data/scripts/swift-proxy-server +0 -23
- swift-2.32.0.data/scripts/swift-recon +0 -24
- swift-2.32.0.data/scripts/swift-ring-builder +0 -37
- swift-2.32.0.data/scripts/swift-ring-builder-analyzer +0 -22
- swift-2.32.0.data/scripts/swift-ring-composer +0 -22
- swift-2.32.0.dist-info/pbr.json +0 -1
- {swift-2.32.0.dist-info → swift-2.34.0.dist-info}/LICENSE +0 -0
- {swift-2.32.0.dist-info → swift-2.34.0.dist-info}/WHEEL +0 -0
- {swift-2.32.0.dist-info → swift-2.34.0.dist-info}/top_level.txt +0 -0
swift/proxy/server.py
CHANGED
@@ -36,7 +36,8 @@ from swift.common.utils import Watchdog, get_logger, \
|
|
36
36
|
get_remote_client, split_path, config_true_value, generate_trans_id, \
|
37
37
|
affinity_key_function, affinity_locality_predicate, list_from_csv, \
|
38
38
|
parse_prefixed_conf, config_auto_int_value, node_to_string, \
|
39
|
-
config_request_node_count_value, config_percent_value, cap_length
|
39
|
+
config_request_node_count_value, config_percent_value, cap_length, \
|
40
|
+
parse_options
|
40
41
|
from swift.common.registry import register_swift_info
|
41
42
|
from swift.common.constraints import check_utf8, valid_api_version
|
42
43
|
from swift.proxy.controllers import AccountController, ContainerController, \
|
@@ -49,6 +50,7 @@ from swift.common.swob import HTTPBadRequest, HTTPForbidden, \
|
|
49
50
|
HTTPServerError, HTTPException, Request, HTTPServiceUnavailable, \
|
50
51
|
wsgi_to_str
|
51
52
|
from swift.common.exceptions import APIVersionError
|
53
|
+
from swift.common.wsgi import run_wsgi
|
52
54
|
|
53
55
|
|
54
56
|
# List of entry points for mandatory middlewares.
|
@@ -260,18 +262,8 @@ class Application(object):
|
|
260
262
|
[os.path.join(swift_dir, 'mime.types')])
|
261
263
|
self.account_autocreate = \
|
262
264
|
config_true_value(conf.get('account_autocreate', 'no'))
|
263
|
-
|
264
|
-
|
265
|
-
'deprecated. Configure '
|
266
|
-
'auto_create_account_prefix under the '
|
267
|
-
'swift-constraints section of '
|
268
|
-
'swift.conf. This option will '
|
269
|
-
'be ignored in a future release.')
|
270
|
-
self.auto_create_account_prefix = \
|
271
|
-
conf['auto_create_account_prefix']
|
272
|
-
else:
|
273
|
-
self.auto_create_account_prefix = \
|
274
|
-
constraints.AUTO_CREATE_ACCOUNT_PREFIX
|
265
|
+
self.auto_create_account_prefix = \
|
266
|
+
constraints.AUTO_CREATE_ACCOUNT_PREFIX
|
275
267
|
self.expiring_objects_account = self.auto_create_account_prefix + \
|
276
268
|
(conf.get('expiring_objects_account_name') or 'expiring_objects')
|
277
269
|
self.expiring_objects_container_divisor = \
|
@@ -296,6 +288,8 @@ class Application(object):
|
|
296
288
|
if a.strip()]
|
297
289
|
self.strict_cors_mode = config_true_value(
|
298
290
|
conf.get('strict_cors_mode', 't'))
|
291
|
+
self.allow_open_expired = config_true_value(
|
292
|
+
conf.get('allow_open_expired', 'f'))
|
299
293
|
self.node_timings = {}
|
300
294
|
self.timing_expiry = int(conf.get('timing_expiry', 300))
|
301
295
|
value = conf.get('request_node_count', '2 * replicas')
|
@@ -357,6 +351,7 @@ class Application(object):
|
|
357
351
|
policies=POLICIES.get_policy_info(),
|
358
352
|
allow_account_management=self.allow_account_management,
|
359
353
|
account_autocreate=self.account_autocreate,
|
354
|
+
allow_open_expired=self.allow_open_expired,
|
360
355
|
**constraints.EFFECTIVE_CONSTRAINTS)
|
361
356
|
self.watchdog = Watchdog()
|
362
357
|
self.watchdog.spawn()
|
@@ -825,3 +820,12 @@ def app_factory(global_conf, **local_conf):
|
|
825
820
|
app = Application(conf)
|
826
821
|
app.check_config()
|
827
822
|
return app
|
823
|
+
|
824
|
+
|
825
|
+
def main():
|
826
|
+
conf_file, options = parse_options(test_config=True)
|
827
|
+
sys.exit(run_wsgi(conf_file, 'proxy-server', **options))
|
828
|
+
|
829
|
+
|
830
|
+
if __name__ == '__main__':
|
831
|
+
main()
|
@@ -59,6 +59,7 @@ Andrew Hale (andy@wwwdata.eu)
|
|
59
59
|
Andrew Welleck (awellec@us.ibm.com)
|
60
60
|
Andy McCrae (andy.mccrae@gmail.com)
|
61
61
|
Anh Tran (anhtt@vn.fujitsu.com)
|
62
|
+
Anish Kachinthaya (anishk23733@gmail.com)
|
62
63
|
Ankur Gupta (ankur.gupta@intel.com)
|
63
64
|
Anne Gentle (anne@openstack.org)
|
64
65
|
aolivo (aolivo@blizzard.com)
|
@@ -68,6 +69,7 @@ Ashwin Nair (nairashwin952013@gmail.com)
|
|
68
69
|
Atsushi Sakai (sakaia@jp.fujitsu.com)
|
69
70
|
Aymeric Ducroquetz (aymeric.ducroquetz@ovhcloud.com)
|
70
71
|
Azhagu Selvan SP (tamizhgeek@gmail.com)
|
72
|
+
Azmain Adib (adib1905@gmail.com)
|
71
73
|
baiwenteng (baiwenteng@inspur.com)
|
72
74
|
Ben Keller (bjkeller@us.ibm.com)
|
73
75
|
Ben Martin (blmartin@us.ibm.com)
|
@@ -99,7 +101,7 @@ chengebj5238 (chengebj@inspur.com)
|
|
99
101
|
chenxiangui (chenxiangui@inspur.com)
|
100
102
|
Chetan Mishra (chetan.s115@gmail.com)
|
101
103
|
Chmouel Boudjnah (chmouel@enovance.com)
|
102
|
-
Chris Smart (
|
104
|
+
Chris Smart (distroguy@gmail.com)
|
103
105
|
Chris Wedgwood (cw@f00f.org)
|
104
106
|
Christian Berendt (berendt@b1-systems.de)
|
105
107
|
Christian Hugo (hugo.christian@web.de)
|
@@ -119,6 +121,7 @@ Cory Wright (cory.wright@rackspace.com)
|
|
119
121
|
Cristian A Sanchez (cristian.a.sanchez@intel.com)
|
120
122
|
CY Chiang (cychiang@cht.com.tw)
|
121
123
|
Cyril Roelandt (cyril@redhat.com)
|
124
|
+
Daanish Khan (daanish1337@gmail.com)
|
122
125
|
Dae S. Kim (dae@velatum.com)
|
123
126
|
Daisuke Morita (morita.daisuke@ntti3.com)
|
124
127
|
Dan Dillinger (dan.dillinger@sonian.net)
|
@@ -218,6 +221,7 @@ Ionuț Arțăriși (iartarisi@suse.cz)
|
|
218
221
|
Iryoung Jeong (iryoung@gmail.com)
|
219
222
|
its-not-a-bug-its-a-feature (david.cole@sohonet.com)
|
220
223
|
Jaivish Kothari (jaivish.kothari@nectechnologies.in)
|
224
|
+
Jake Yip (jake.yip@ardc.edu.au)
|
221
225
|
James E. Blair (jeblair@openstack.org)
|
222
226
|
James Page (james.page@ubuntu.com)
|
223
227
|
Jamie Lennox (jlennox@redhat.com)
|
@@ -257,6 +261,7 @@ Kazuhiro Miyahara (miyahara.kazuhiro@lab.ntt.co.jp)
|
|
257
261
|
Ke Liang (ke.liang@easystack.cn)
|
258
262
|
Kenichiro Matsuda (matsuda_kenichi@jp.fujitsu.com)
|
259
263
|
Keshava Bharadwaj (kb.sankethi@gmail.com)
|
264
|
+
kim woo seok (rladntjr4@gmail.com)
|
260
265
|
Kiyoung Jung (kiyoung.jung@kt.com)
|
261
266
|
Koert van der Veer (koert@cloudvps.com)
|
262
267
|
Konrad Kügler (swamblumat-eclipsebugs@yahoo.de)
|
@@ -285,7 +290,7 @@ lvxianguo (lvxianguo@inspur.com)
|
|
285
290
|
M V P Nitesh (m.nitesh@nectechnologies.in)
|
286
291
|
Madhuri Kumari (madhuri.rai07@gmail.com)
|
287
292
|
Mahati Chamarthy (mahati.chamarthy@gmail.com)
|
288
|
-
Mandell Degerness (mdegerness@
|
293
|
+
Mandell Degerness (mdegerness@nvidia.com)
|
289
294
|
manuvakery1 (manu.km@idrive.com)
|
290
295
|
maoshuai (fwsakura@163.com)
|
291
296
|
Marcelo Martins (btorch@gmail.com)
|
@@ -313,11 +318,14 @@ Mingyu Li (li.mingyu@99cloud.net)
|
|
313
318
|
Minwoo Bae (minwoob@us.ibm.com)
|
314
319
|
Mitsuhiro SHIGEMATSU (shigematsu.mitsuhiro@lab.ntt.co.jp)
|
315
320
|
mmcardle (mark.mcardle@sohonet.com)
|
321
|
+
Mohamed Hassaneen (mohammedashoor89@gmail.com)
|
322
|
+
Mohammed Al-Jawaheri (mjawaheri02@gmail.com)
|
316
323
|
Mohit Motiani (mohit.motiani@intel.com)
|
317
324
|
Monty Taylor (mordred@inaugust.com)
|
318
325
|
Morgan Fainberg (morgan.fainberg@gmail.com)
|
319
326
|
Morita Kazutaka (morita.kazutaka@gmail.com)
|
320
327
|
Motonobu Ichimura (motonobu@gmail.com)
|
328
|
+
Nada El-Mestkawy (nadamaged05@gmail.com)
|
321
329
|
Nadeem Syed (snadeem.hameed@gmail.com)
|
322
330
|
Nakagawa Masaaki (nakagawamsa@nttdata.co.jp)
|
323
331
|
Nakul Dahiwade (nakul.dahiwade@intel.com)
|
@@ -352,7 +360,7 @@ Pavel Kvasnička (pavel.kvasnicka@firma.seznam.cz)
|
|
352
360
|
Pawel Palucki (pawel.palucki@gmail.com)
|
353
361
|
Pearl Yajing Tan (pearl.y.tan@seagate.com)
|
354
362
|
pengyuesheng (pengyuesheng@gohighsec.com)
|
355
|
-
Pete Zaitcev (zaitcev@
|
363
|
+
Pete Zaitcev (zaitcev@yahoo.com)
|
356
364
|
Peter Lisák (peter.lisak@gmail.com)
|
357
365
|
Peter Portante (peter.portante@redhat.com)
|
358
366
|
Petr Kovar (pkovar@redhat.com)
|
@@ -404,7 +412,7 @@ Steve Kowalik (steven@wedontsleep.org)
|
|
404
412
|
Steve Martinelli (stevemar@ca.ibm.com)
|
405
413
|
Steven Lang (Steven.Lang@hgst.com)
|
406
414
|
Sushil Kumar (sushil.kumar2@globallogic.com)
|
407
|
-
Takashi Kajinami (
|
415
|
+
Takashi Kajinami (kajinamit@oss.nttdata.com)
|
408
416
|
Takashi Natsume (takanattie@gmail.com)
|
409
417
|
TheSriram (sriram@klusterkloud.com)
|
410
418
|
Thiago da Silva (thiagodasilva@gmail.com)
|
@@ -424,6 +432,7 @@ Tomas Matlocha (tomas.matlocha@firma.seznam.cz)
|
|
424
432
|
tone-zhang (tone.zhang@linaro.org)
|
425
433
|
Tong Li (litong01@us.ibm.com)
|
426
434
|
Tovin Seven (vinhnt@vn.fujitsu.com)
|
435
|
+
Tra Bui (trabui.0517@gmail.com)
|
427
436
|
Travis McPeak (tmcpeak@us.ibm.com)
|
428
437
|
Tushar Gohad (tushar.gohad@intel.com)
|
429
438
|
Van Hung Pham (hungpv@vn.fujitsu.com)
|
@@ -451,6 +460,7 @@ Wyllys Ingersoll (wyllys.ingersoll@evault.com)
|
|
451
460
|
xhancar (pavel.hancar@gmail.com)
|
452
461
|
XieYingYun (smokony@sina.com)
|
453
462
|
Yaguang Wang (yaguang.wang@intel.com)
|
463
|
+
Yan Xiao (yanxiao@nvidia.com)
|
454
464
|
yanghuichan (yanghc@fiberhome.com)
|
455
465
|
Yatin Kumbhare (yatinkumbhare@gmail.com)
|
456
466
|
Ye Jia Xu (xyj.asmy@gmail.com)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: swift
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.34.0
|
4
4
|
Summary: OpenStack Object Storage
|
5
5
|
Home-page: https://docs.openstack.org/swift/latest/
|
6
6
|
Author: OpenStack
|
@@ -26,12 +26,15 @@ Classifier: Programming Language :: Python :: 3.7
|
|
26
26
|
Classifier: Programming Language :: Python :: 3.8
|
27
27
|
Classifier: Programming Language :: Python :: 3.9
|
28
28
|
Classifier: Programming Language :: Python :: 3.10
|
29
|
+
Classifier: Programming Language :: Python :: 3.11
|
30
|
+
Classifier: Programming Language :: Python :: 3.12
|
31
|
+
Description-Content-Type: text/x-rst
|
29
32
|
Requires-Dist: PasteDeploy (>=2.0.0)
|
30
33
|
Requires-Dist: PyECLib (>=1.3.1)
|
31
34
|
Requires-Dist: cryptography (>=2.0.2)
|
32
|
-
Requires-Dist: eventlet (
|
35
|
+
Requires-Dist: eventlet (!=0.34.3,>=0.25.0)
|
33
36
|
Requires-Dist: greenlet (>=0.3.2)
|
34
|
-
Requires-Dist: lxml (>=
|
37
|
+
Requires-Dist: lxml (>=4.2.3)
|
35
38
|
Requires-Dist: requests (>=2.14.2)
|
36
39
|
Requires-Dist: six (>=1.10.0)
|
37
40
|
Requires-Dist: xattr (>=0.4) ; (sys_platform!='win32')
|
@@ -49,9 +52,9 @@ Requires-Dist: boto (>=2.32.1) ; extra == 'test'
|
|
49
52
|
Requires-Dist: botocore (>=1.12) ; extra == 'test'
|
50
53
|
Requires-Dist: coverage (>=5.0.4) ; extra == 'test'
|
51
54
|
Requires-Dist: docutils (>=0.11) ; extra == 'test'
|
52
|
-
Requires-Dist: hacking (<2.
|
55
|
+
Requires-Dist: hacking (<6.2.0,>=2.0) ; extra == 'test'
|
53
56
|
Requires-Dist: keystonemiddleware (>=4.17.0) ; extra == 'test'
|
54
|
-
Requires-Dist: mock (>=
|
57
|
+
Requires-Dist: mock (>=3.0) ; extra == 'test'
|
55
58
|
Requires-Dist: pytest-cov (>=2.12.1) ; extra == 'test'
|
56
59
|
Requires-Dist: pytest (>=4.6.11) ; extra == 'test'
|
57
60
|
Requires-Dist: python-keystoneclient (!=2.1.0,>=2.0.0) ; extra == 'test'
|
@@ -152,14 +155,13 @@ tests should still pass, but a very large number will be skipped.
|
|
152
155
|
Code Organization
|
153
156
|
~~~~~~~~~~~~~~~~~
|
154
157
|
|
155
|
-
- bin/: Executable scripts that are the processes run by the deployer
|
156
158
|
- doc/: Documentation
|
157
159
|
- etc/: Sample config files
|
158
160
|
- examples/: Config snippets used in the docs
|
159
161
|
- swift/: Core code
|
160
162
|
|
161
163
|
- account/: account server
|
162
|
-
- cli/: code that backs some of the CLI tools
|
164
|
+
- cli/: code that backs some of the CLI tools
|
163
165
|
- common/: code shared by different modules
|
164
166
|
|
165
167
|
- middleware/: "standard", officially-supported middleware
|
@@ -1,21 +1,31 @@
|
|
1
1
|
swift/__init__.py,sha256=7sYdAKOLOLQKIJoeUsQeLm89tEBcuFzErwBExF2d0vY,3841
|
2
2
|
swift/account/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
-
swift/account/auditor.py,sha256=
|
3
|
+
swift/account/auditor.py,sha256=ErvBcyurmU1AL9UXu3GGtUTJUdtN2kNuybAV3k1EjIs,1971
|
4
4
|
swift/account/backend.py,sha256=rT9Y9xw6QjocQQmC84EeTrsfZbZE_WduzLAh5StQZek,24580
|
5
|
-
swift/account/reaper.py,sha256=
|
6
|
-
swift/account/replicator.py,sha256=
|
7
|
-
swift/account/server.py,sha256=
|
5
|
+
swift/account/reaper.py,sha256=QM_3ZHCiw32bCe54uVLaFzLWvd_VhyCRZN3rqO7Ec4k,25057
|
6
|
+
swift/account/replicator.py,sha256=3US-d4JVIgB96ix8EvzA6ISFf1b8J_kiGhuXA-5wLwk,1641
|
7
|
+
swift/account/server.py,sha256=ml2hSY2K52y3mARWMOZOfhSGHjb6OUoCGFlXr7-ZQyU,14954
|
8
8
|
swift/account/utils.py,sha256=e6VKhlKgsW_34bAvubCDYvuZUDms1E3o_NMXoznhRL0,4201
|
9
9
|
swift/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
+
swift/cli/account_audit.py,sha256=yjQcxkE6RkJxzXxcFSO-OmuJvaoaKFwYuVeh0lDfHUc,16721
|
11
|
+
swift/cli/config.py,sha256=Cu2ImKYV0uZRi7n1OQHDOrQ7m3xViReAXU-hzjQchwM,3094
|
10
12
|
swift/cli/container_deleter.py,sha256=Q2AXyGmMto73g36ujRmjdssEnPez7UJ0hmaV2V92PzA,7279
|
13
|
+
swift/cli/dispersion_populate.py,sha256=mJwimR0N6M-02Guen_TEhtni5ElHHjyYrXJrhn3Pi5w,11447
|
11
14
|
swift/cli/dispersion_report.py,sha256=83sIUEG9ucxXRh7A_4eKW_FGT0mhsYD98weCa0lsWkE,17724
|
15
|
+
swift/cli/drive_audit.py,sha256=X1VeZeBNIZMmvMbk3I_lRGpP6H8rIuO4CTFMM8ZY9Ng,10656
|
12
16
|
swift/cli/form_signature.py,sha256=rSfX6_yzcZ_jNgMj01yfbbcWOtWa9APHoNoUuZGUYFo,5558
|
13
|
-
swift/cli/
|
17
|
+
swift/cli/get_nodes.py,sha256=gZwAf4WfERJvvGhpSCrmez5Xm3A5N9G3wscZwt1vXOg,2855
|
18
|
+
swift/cli/info.py,sha256=ot9TqrHdRC4vWda2ZtXe6KoPw9GjGEAs5rGrfJmt2Mg,30663
|
14
19
|
swift/cli/manage_shard_ranges.py,sha256=kogs4W_ltSjE3HkkFt5t3MfGsZUf3uD-FlBM7QJMdHk,49199
|
20
|
+
swift/cli/oldies.py,sha256=WURcUvfDM0NTfp04hyX-CM8_DspDQJayvlX2LPJU6-E,3346
|
21
|
+
swift/cli/orphans.py,sha256=D-N9hyINdQsO-Ra8iUVSM95aDD9CjZLq64jfoKbn1Do,5044
|
15
22
|
swift/cli/recon.py,sha256=AbdwKk-RoRsBpEK1w1W--VrkzGhV-VDv5COwl_Eaux0,55257
|
16
|
-
swift/cli/
|
23
|
+
swift/cli/recon_cron.py,sha256=zNlwJF3SEZqu2VYlS5i_B9SiLn-Yg1fyaxAzrIFb4Uw,2808
|
24
|
+
swift/cli/reconciler_enqueue.py,sha256=HVEFZ2ZuphfO58KSSsWZ0v6V3LAORUSKKmC4W3_b0_c,2526
|
25
|
+
swift/cli/relinker.py,sha256=dKKVzQrUnxksqXSLyb_uYZyxZddsLcABaHhMDCGWXD8,36240
|
26
|
+
swift/cli/reload.py,sha256=HiS9OnARFq7WaGdSflAlEzr3_KEpdsSKpE7Lh883gOo,5074
|
17
27
|
swift/cli/ring_builder_analyzer.py,sha256=Ak_qi_UnQU7509RQunK6ANB1b_MW_GL1MnxOHAxjLKA,11977
|
18
|
-
swift/cli/ringbuilder.py,sha256=
|
28
|
+
swift/cli/ringbuilder.py,sha256=RipluXW_Iqqo_bpvRJhE6P9Vexw-kZ-1an8TAmbcwYY,64261
|
19
29
|
swift/cli/ringcomposer.py,sha256=pXzs9LbE8RA6z6uDRBb-zvrsGkLSxVsuz58LCcxMNCo,6553
|
20
30
|
swift/cli/shard-info.py,sha256=rMEMaAS4ms8iNvxuBFhm8yfH2FfgS7okWZB0wifLZHA,7462
|
21
31
|
swift/common/__init__.py,sha256=E68YBcsI0CguVRZOPIx-uJaAq32swceKJwT8a4F6-G4,35
|
@@ -23,37 +33,38 @@ swift/common/base_storage_server.py,sha256=KUzWLfRuCUkNbAP8ket3KYreYE2qctOjIazFx
|
|
23
33
|
swift/common/bufferedhttp.py,sha256=6fj7kPKFaab9alhjE5KVTyQh9jtHJEt7bHZ6VDdonPM,12923
|
24
34
|
swift/common/constraints.py,sha256=RjHQX0Cptjns1XdRzaJKLYOkG0aTujLSdUWNq7on3q0,17419
|
25
35
|
swift/common/container_sync_realms.py,sha256=1zF3-nROq61h0WCwk3xkGrkSRBYsGc7M2II-zAfWu0Y,6466
|
26
|
-
swift/common/daemon.py,sha256=
|
27
|
-
swift/common/db.py,sha256=
|
28
|
-
swift/common/db_auditor.py,sha256=
|
29
|
-
swift/common/db_replicator.py,sha256=
|
36
|
+
swift/common/daemon.py,sha256=gOELERtkPd-sM9_1n6YK7bVjaPW6AYvbKWaOdqnij84,12279
|
37
|
+
swift/common/db.py,sha256=Zdroe1ss1X7beXRhiVGLRnJUmy2XdPAtDhrgT5NemfA,45244
|
38
|
+
swift/common/db_auditor.py,sha256=Cq9Orz_Dvpy1lNUBLtDx3nnhDx9He7M0tydG6zZnB4U,6692
|
39
|
+
swift/common/db_replicator.py,sha256=RHf6xZ6tRXWnLQjKsYTBFy14R5D5F5VucsgWlcyO15w,46142
|
30
40
|
swift/common/digest.py,sha256=Aav-FHVHFnNmr8krFvVzZUFcBJhaDN38MiYSi4xz5l4,5564
|
31
41
|
swift/common/direct_client.py,sha256=D0vZOQDq3-_KjQXfEngdpbxEPnW2Eoto6oh-zuYoR3g,29707
|
32
42
|
swift/common/error_limiter.py,sha256=-jrHWmQ8gHOsuijy_s7YNxorfI8VynvP-mGJm8V-Plk,3466
|
33
|
-
swift/common/exceptions.py,sha256=
|
43
|
+
swift/common/exceptions.py,sha256=rtTP5-2u12Fkh0zZNrmyxzSJ2xmVqcCeIGnVQOOnSyY,6024
|
34
44
|
swift/common/header_key_dict.py,sha256=xO0O7eJrrvGtu1NjaTP-WxygKscWAuhWNSRZJxp3mdI,2466
|
35
45
|
swift/common/http.py,sha256=ih6tclv8ZAo1BcQOZ-Z54J6T_-yiebfkS0_Qtg618EE,4623
|
36
|
-
swift/common/http_protocol.py,sha256=
|
46
|
+
swift/common/http_protocol.py,sha256=_hp50TKFKN0935jvG6jk346GwfSg6GBhMnuLaK93L3c,17165
|
37
47
|
swift/common/internal_client.py,sha256=d0-WqfEF5dvRlIqVBo1pHxQ06Btx3G9zVPXHDCMw_lA,41295
|
38
48
|
swift/common/linkat.py,sha256=YV2ZtVCcJ4PKBmkrUuT3ho8gmdRsmrVYLNdoqk-JITs,2389
|
39
|
-
swift/common/manager.py,sha256=
|
40
|
-
swift/common/memcached.py,sha256=
|
49
|
+
swift/common/manager.py,sha256=5A4z6m1FodefmznB6WhVtr36-uzakgCRwGpd8JblYHg,36763
|
50
|
+
swift/common/memcached.py,sha256=1dWdcwZiNLocuC3N3EIBNQQDwVJl79_WVvI7hevwlpI,31982
|
41
51
|
swift/common/recon.py,sha256=Geo6_Sv436yfUGC2xwPWTW6B6Clw-OumBTBvOq82j_M,1109
|
42
52
|
swift/common/registry.py,sha256=aXhoX-s3aY9HhfA6URs0k0Dg2sHh4v032Nl0jDLwHXc,5350
|
43
|
-
swift/common/request_helpers.py,sha256=
|
53
|
+
swift/common/request_helpers.py,sha256=TvF56XK0V0SjevrWsXqh35mPADAhaHX-5iRNojWWyXQ,39903
|
44
54
|
swift/common/splice.py,sha256=ES7GuXDkctf9h2IaR3dF3sC6jOF2zyIoIgXq4MlQitc,5423
|
45
|
-
swift/common/
|
46
|
-
swift/common/
|
47
|
-
swift/common/
|
55
|
+
swift/common/statsd_client.py,sha256=XcrrpDuBNoDnqDB4Fm7Rl5LfjSS5BWPVyxC7zl0Bhx4,8252
|
56
|
+
swift/common/storage_policy.py,sha256=4wrOBG0eg_8aJhal40PQFpffl_lGMBfj3pAkPQpfgBQ,37407
|
57
|
+
swift/common/swob.py,sha256=BbNTY_bKL-l1qb8JEXCVk98RHSDfjVNTpYEnwyGXMlc,62128
|
58
|
+
swift/common/wsgi.py,sha256=zl13nfamJfz4VQPSwcORIsV2tgRodoU_Q-mZ6m4MS0g,49900
|
48
59
|
swift/common/middleware/__init__.py,sha256=idMQFpmj3W1pOF4yFE_FrnmYLbZNaVhIy6S3_IPP0no,1503
|
49
|
-
swift/common/middleware/account_quotas.py,sha256=
|
60
|
+
swift/common/middleware/account_quotas.py,sha256=BV30pLWKs_uXPgBe9JT1m-IbwUs51a1RHqMHioCAd8c,12886
|
50
61
|
swift/common/middleware/acl.py,sha256=nP4pZDBZbS1WvHjcvSHzS0lhTJzRVmDZzibujUHK6c0,11619
|
51
|
-
swift/common/middleware/backend_ratelimit.py,sha256=
|
62
|
+
swift/common/middleware/backend_ratelimit.py,sha256=cWk763mcR1TVWpr3NdwMxylVZ1KlCLMWrqegnXpOoQA,10029
|
52
63
|
swift/common/middleware/bulk.py,sha256=HXEfJnxed_9ZXc1hJ5fRwQQMo1uCcP3pDMpo62inUVo,35716
|
53
|
-
swift/common/middleware/catch_errors.py,sha256=
|
54
|
-
swift/common/middleware/cname_lookup.py,sha256=
|
64
|
+
swift/common/middleware/catch_errors.py,sha256=QVcNN2tuc4Xn-zaJrObd73AJX2FpaQ8IAOha5RXzZ9g,5859
|
65
|
+
swift/common/middleware/cname_lookup.py,sha256=12c6i2QztqTFsgFYAj3PxVcaUaJx8Bs5mFvm8gqxPU0,8600
|
55
66
|
swift/common/middleware/container_quotas.py,sha256=I5S9ZK5IYs4kv-kzBeZ4Exdg2Vx2fPPS0kb4IzIJPRw,5444
|
56
|
-
swift/common/middleware/container_sync.py,sha256
|
67
|
+
swift/common/middleware/container_sync.py,sha256=-oEx30ZnZzXRQwuI3cHXM-WYDGtIMX_5mF5uXFmfPM8,7397
|
57
68
|
swift/common/middleware/copy.py,sha256=NUTeuyHt9gaLakwy_tZq31qe056FREXLFZYcC5x6JAI,19602
|
58
69
|
swift/common/middleware/crossdomain.py,sha256=iCzBcfEV3z2wBTwnv_iE3TZ2ZqQNGJiVs-ZNJn7XVfk,3813
|
59
70
|
swift/common/middleware/dlo.py,sha256=a1trnB19DF3Y04FfVvTRSaSWwCj23odhWmsB3ap4xug,20396
|
@@ -67,43 +78,44 @@ swift/common/middleware/list_endpoints.py,sha256=LkBJhLoREsw7Sy3O0HEOEXO8k2N4sx3
|
|
67
78
|
swift/common/middleware/listing_formats.py,sha256=GEKnBQAe3f0_4NQcLahL9aD8UFNzvzkji-GLBdvksB8,10610
|
68
79
|
swift/common/middleware/memcache.py,sha256=YENYsIaZZ1wM1IWfmlJzVrAfF0Eb0HF8YAwuj1HupoY,1308
|
69
80
|
swift/common/middleware/name_check.py,sha256=K3PzYs7lW1fe7anYFdcC6ijMChcsvNbtw4Sio8Dec_8,5366
|
70
|
-
swift/common/middleware/proxy_logging.py,sha256=
|
71
|
-
swift/common/middleware/ratelimit.py,sha256=
|
81
|
+
swift/common/middleware/proxy_logging.py,sha256=43cZKy_fQ8HM0wmC68q8ZVQgx3DLsu3UY_0fmu9m5Ps,22822
|
82
|
+
swift/common/middleware/ratelimit.py,sha256=acizeEytjMxelfIBGvhthmINSTcRkU-aLX6mPCqpe5o,14247
|
72
83
|
swift/common/middleware/read_only.py,sha256=ukXiA8Dv4JXJsRWkviEJX6dqvTVT8skpE6LFIp2T3mM,4559
|
73
|
-
swift/common/middleware/recon.py,sha256=
|
74
|
-
swift/common/middleware/slo.py,sha256=
|
75
|
-
swift/common/middleware/staticweb.py,sha256=
|
84
|
+
swift/common/middleware/recon.py,sha256=kJds4B7JVIaHJeN3UzA9qSBYImrzd7u77z1vSaj8tK4,18114
|
85
|
+
swift/common/middleware/slo.py,sha256=SS3GbOEFqLvwOCeQQm3AVGntMNtCcu7v9QVafJYwwxU,84912
|
86
|
+
swift/common/middleware/staticweb.py,sha256=oNxI2t9un_osgtDF2Q-hinsGdjHHA7W1sza3rNE43xk,26185
|
76
87
|
swift/common/middleware/symlink.py,sha256=qzKpxDg1400uYCVs2ia0f-cz2Ty--sP70qALymCsWfw,35236
|
77
|
-
swift/common/middleware/tempauth.py,sha256=
|
78
|
-
swift/common/middleware/tempurl.py,sha256=
|
79
|
-
swift/common/middleware/xprofile.py,sha256=
|
88
|
+
swift/common/middleware/tempauth.py,sha256=pNKJpk1KJ2MwePYFQnY-HphjctL6IFTwnRGFiCvBS80,38354
|
89
|
+
swift/common/middleware/tempurl.py,sha256=Ht35uJkxULsTlxPZ8WkY85HAeQt5FL3tU047d_IqgOs,36758
|
90
|
+
swift/common/middleware/xprofile.py,sha256=zJFFhdvJhKWb02yF-aTZUE2oM2YatDUmfdZgnrg0CG0,9883
|
80
91
|
swift/common/middleware/crypto/__init__.py,sha256=ZI-Tnqg3AMVgDzAhkWFtAlKFJqXGAzYMzSquwK2OnUk,1498
|
81
|
-
swift/common/middleware/crypto/crypto_utils.py,sha256=
|
82
|
-
swift/common/middleware/crypto/decrypter.py,sha256=
|
92
|
+
swift/common/middleware/crypto/crypto_utils.py,sha256=jKDJEJf-C434dHgLh1X4CWxB95UnHGOOV7JNY-vysjM,11400
|
93
|
+
swift/common/middleware/crypto/decrypter.py,sha256=JmL2tZSCNylS9J3UYl6y0nIaZAZ0FIbUlhj8t2jQ_eM,20408
|
83
94
|
swift/common/middleware/crypto/encrypter.py,sha256=T7Av_gj2H6gSCf74uYiIJDhD2Cg_dX6vUDr4x2Q5m08,17084
|
84
95
|
swift/common/middleware/crypto/keymaster.py,sha256=FRSdpwePc0bjbd9MBrsEcgLvqZzxlzn1PrxmWEFoaOI,17436
|
85
96
|
swift/common/middleware/crypto/kmip_keymaster.py,sha256=aC3RZlFnYEimO3EslaGwOfUNWLRRs6v86mlOcJXqdb0,7128
|
86
|
-
swift/common/middleware/crypto/kms_keymaster.py,sha256=
|
97
|
+
swift/common/middleware/crypto/kms_keymaster.py,sha256=g_sAx8UZL5td5HZ5w0SPgzcz6e8Astj5eomRjiXsGiw,5136
|
87
98
|
swift/common/middleware/s3api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
|
-
swift/common/middleware/s3api/acl_handlers.py,sha256=
|
99
|
+
swift/common/middleware/s3api/acl_handlers.py,sha256=KVmLYcxSL2pEjmf4gRvmSZjhhj-XTw4DPBM4RVZTar4,17294
|
89
100
|
swift/common/middleware/s3api/acl_utils.py,sha256=9_YeR76DqKgHNYtxUZbHMRjvVctgI22Q151i6IRyx2U,3902
|
90
101
|
swift/common/middleware/s3api/etree.py,sha256=zoWYOIutUcdVoYbxWgdBiuv_UJMztwDj7DscwLg2-og,4800
|
91
102
|
swift/common/middleware/s3api/exception.py,sha256=b2a1dlC0oyG38EZ7dzYLrIQf1XOk9srgMzN-NDZS9cc,857
|
92
|
-
swift/common/middleware/s3api/s3api.py,sha256
|
93
|
-
swift/common/middleware/s3api/s3request.py,sha256=
|
94
|
-
swift/common/middleware/s3api/s3response.py,sha256=
|
95
|
-
swift/common/middleware/s3api/s3token.py,sha256
|
103
|
+
swift/common/middleware/s3api/s3api.py,sha256=kcoVr6DSyn_VWZLg5W_Cz1eLqV_QB_l9M-ZSlPUqt5A,19695
|
104
|
+
swift/common/middleware/s3api/s3request.py,sha256=PwFaI-IQ3ZoB9VT6knytcc9-VN_lzfAJxXtJW90UpQ8,69767
|
105
|
+
swift/common/middleware/s3api/s3response.py,sha256=UtIwCd1sT2_UDVKDYg-EVxM_CmdH4HAk-ib1r6vTkKw,26494
|
106
|
+
swift/common/middleware/s3api/s3token.py,sha256=-3AlKMXB1-b7VYqjTUIEUotmzZfd_l7UiKiGQzhStAA,17598
|
96
107
|
swift/common/middleware/s3api/subresource.py,sha256=CLu6YKDYdsV5JwIy7ohYWlDb9ZrSS8nQX-YqbLNtC7A,18381
|
97
|
-
swift/common/middleware/s3api/utils.py,sha256=
|
98
|
-
swift/common/middleware/s3api/controllers/__init__.py,sha256=
|
99
|
-
swift/common/middleware/s3api/controllers/acl.py,sha256=
|
108
|
+
swift/common/middleware/s3api/utils.py,sha256=qVuNAXJaDn-Ggep5qmQsXJ-ePzRk6jEqYcRdrTRCei8,6612
|
109
|
+
swift/common/middleware/s3api/controllers/__init__.py,sha256=Hx-o3JZppQWDVPwCinKzdetncL2CDStZKszu5HZVR2U,2175
|
110
|
+
swift/common/middleware/s3api/controllers/acl.py,sha256=09FxC6xFP39tDD1dOTzq61UCHAMISmiww4EqakpYnhQ,4914
|
100
111
|
swift/common/middleware/s3api/controllers/base.py,sha256=1Nk1d_R8xJRZhSx8Kxdn0Inew-mXgUHLDrHHbarnBT0,2947
|
101
112
|
swift/common/middleware/s3api/controllers/bucket.py,sha256=u55Ttqb1AYK6RySO3_if5OicSOulrbE-at-jJ_tcEiI,17706
|
102
113
|
swift/common/middleware/s3api/controllers/location.py,sha256=LZmlOaZ5pyhGV28oijnTxWMC-qaWHDup_77O4qeRQdE,1410
|
103
|
-
swift/common/middleware/s3api/controllers/logging.py,sha256=
|
114
|
+
swift/common/middleware/s3api/controllers/logging.py,sha256=rjE1njO4M1vEajSJ5oDRVg-aATTegOity6w_Fqhvb24,1679
|
104
115
|
swift/common/middleware/s3api/controllers/multi_delete.py,sha256=-1OVeqK6vHst2Jeg2lWzW2r6IcYbNJGLhnAOxXUlghw,7497
|
105
|
-
swift/common/middleware/s3api/controllers/multi_upload.py,sha256=
|
106
|
-
swift/common/middleware/s3api/controllers/obj.py,sha256=
|
116
|
+
swift/common/middleware/s3api/controllers/multi_upload.py,sha256=4W5d1aEIiuCrY-FbzXNnhxRSZwJnp2_9rEAe-KY1DYU,36093
|
117
|
+
swift/common/middleware/s3api/controllers/obj.py,sha256=mOA_93wtdnbutN3waIf3kguV5B6PzmF33QU1E0RsvVc,10168
|
118
|
+
swift/common/middleware/s3api/controllers/object_lock.py,sha256=RXQeyC7q9MoRCuysMmPfloZZDiMDo6rji2okBzcXdQ8,1469
|
107
119
|
swift/common/middleware/s3api/controllers/s3_acl.py,sha256=G7uKZcLMCPwMndymMMFfs9a66AyWpk3k0wTPCm-S7Aw,2097
|
108
120
|
swift/common/middleware/s3api/controllers/service.py,sha256=6DXsCxflLy85GcaqT1dA7GBO2dzpaVXuoWIBVb8xDeQ,2526
|
109
121
|
swift/common/middleware/s3api/controllers/tagging.py,sha256=HEAUt77yYfyCjOCO6NOPvjIHV_9lS81jAxSsVOTSnF4,1701
|
@@ -132,28 +144,31 @@ swift/common/middleware/versioned_writes/__init__.py,sha256=l1Mn8U28876YDf5dVFkG
|
|
132
144
|
swift/common/middleware/versioned_writes/legacy.py,sha256=OLXfy7h_P-zyBDbxRjhrNe9rOUzREbuSRC5mi9oHJo8,38701
|
133
145
|
swift/common/middleware/versioned_writes/object_versioning.py,sha256=HAxehk0_f7LiLeHEeE3IScxGGfFMNaeEr8weQILNVvc,66014
|
134
146
|
swift/common/middleware/x_profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
135
|
-
swift/common/middleware/x_profile/exceptions.py,sha256=
|
136
|
-
swift/common/middleware/x_profile/html_viewer.py,sha256=
|
137
|
-
swift/common/middleware/x_profile/profile_model.py,sha256=
|
147
|
+
swift/common/middleware/x_profile/exceptions.py,sha256=BRhoEqEl5_XIY_ArhvveRkHMO0xHx8V-H7w7M_Siz-E,1020
|
148
|
+
swift/common/middleware/x_profile/html_viewer.py,sha256=rY7dFsKNipMh9ohr0x5HY8eCQOg2UE_cYFVA3tokwuQ,21346
|
149
|
+
swift/common/middleware/x_profile/profile_model.py,sha256=iaje5iihcj52U8jGzLmYwmG0_cJI8JFHXxsBhBJfwCw,10202
|
138
150
|
swift/common/ring/__init__.py,sha256=WgGFseZj8r2UtBCBcZiCgzbUoWCGv4ND1MCEv5IW7aA,758
|
139
151
|
swift/common/ring/builder.py,sha256=N61Pcx2vX7JAnEdXR3HR12vd9iC4htOImo-rBKuswf0,81478
|
140
152
|
swift/common/ring/composite_builder.py,sha256=IY4Q6Bul4yJDPVdRGr6iMt1KSh3sDmEo22YZJqxrm58,31543
|
141
153
|
swift/common/ring/ring.py,sha256=5RVbpjqiaIt_dlRTHz-8KYr0S6OiNzLFsY5IsVfAlwg,24275
|
142
154
|
swift/common/ring/utils.py,sha256=nMd8q_kvMkj81XBzfDc3S8zw1YG_oWgK3PyzFZSy5Q4,26083
|
143
|
-
swift/common/utils/__init__.py,sha256=
|
155
|
+
swift/common/utils/__init__.py,sha256=qdZxLiXuW5TzZCBmTpQjrtMpLL8g0kxqdNb_PB5vwGY,176048
|
156
|
+
swift/common/utils/base.py,sha256=FJ_rF6YeXUpfBp7VS-o3lSSiVwy37ITcn2tl_HWNy9w,5090
|
157
|
+
swift/common/utils/config.py,sha256=MnzQfh3_mCV9_jJlvoTth_XJv3oP5W2W2P5iHknG0ZM,15769
|
144
158
|
swift/common/utils/ipaddrs.py,sha256=ZsLWg48yItpQhRSGFdzoLMVqY2k3wRX0YM5boYEJVsY,8550
|
145
159
|
swift/common/utils/libc.py,sha256=Vouiaczjt100Opr5kDeRNiCxFDtQgJPU0E17aH1NGTk,12084
|
146
|
-
swift/common/utils/
|
160
|
+
swift/common/utils/logs.py,sha256=Rx__l_NIHxPamJysar1wrKRmkbFPBdTeWGxkgaG-Ssk,35071
|
161
|
+
swift/common/utils/timestamp.py,sha256=-GZRxoZ5Sw_b7-jAyesnVS9WzjEIFm8FaH1Zmz2XxCg,15392
|
147
162
|
swift/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
148
|
-
swift/container/auditor.py,sha256=
|
149
|
-
swift/container/backend.py,sha256=
|
150
|
-
swift/container/reconciler.py,sha256=
|
151
|
-
swift/container/replicator.py,sha256=
|
152
|
-
swift/container/server.py,sha256=
|
153
|
-
swift/container/sharder.py,sha256=
|
154
|
-
swift/container/sync.py,sha256=
|
163
|
+
swift/container/auditor.py,sha256=mRqZG7ucxyFd_vAjcYhsRNNL5eHHVmYQWpYA6aC7ac0,1140
|
164
|
+
swift/container/backend.py,sha256=GAewRTux4uNVn2DNNvk_iY5ZSJzTctcDs4uqbaC9zOw,109264
|
165
|
+
swift/container/reconciler.py,sha256=V9pYfAIm7V_-uI6qbMu1CAoTDO3NZYt-ignyzmep5zI,36598
|
166
|
+
swift/container/replicator.py,sha256=X48YhjuDKP0ofFbVYugdvufKI1aXGU6gnftWC9LBdyc,19974
|
167
|
+
swift/container/server.py,sha256=pBgonihXRDaDiAOZU0X0FRY7wjnR6nO6j9FFKcZKvYY,49524
|
168
|
+
swift/container/sharder.py,sha256=BpBwWPTbyyr3ylOTqU5Sys6DDkDdEV067fkZijZTAms,122415
|
169
|
+
swift/container/sync.py,sha256=0rYzReBDE-kyJf8LapCqYIWdyzXJqwx_zAHt-xnzshw,30881
|
155
170
|
swift/container/sync_store.py,sha256=f2bPjM6uyW7dg9QUkhJR1G2L-CSmADbS_jL-d-9SNwI,6843
|
156
|
-
swift/container/updater.py,sha256=
|
171
|
+
swift/container/updater.py,sha256=JnucKubL5fP1dkbL68bPvoVrEP7q4WvXinGecq1OiDo,15628
|
157
172
|
swift/locale/de/LC_MESSAGES/swift.po,sha256=h5X1YqXO7oPaGJ-zZ2KAwO8UtunD_viSHPSiy24s1TA,4163
|
158
173
|
swift/locale/en_GB/LC_MESSAGES/swift.po,sha256=AM0-3U_h44llPb65iXb-L4Kd9tPRpLxWhjsl7gIxCmE,3915
|
159
174
|
swift/locale/es/LC_MESSAGES/swift.po,sha256=ivBdhGNuQ5JgbYrxzSyLwfdL9wmtP81wA2Lw6AwEnco,3583
|
@@ -167,70 +182,32 @@ swift/locale/tr_TR/LC_MESSAGES/swift.po,sha256=aelAgGrepJzS1zhL2iB-_Oof-9auaQZRW
|
|
167
182
|
swift/locale/zh_CN/LC_MESSAGES/swift.po,sha256=80GHED9QBvQyNwRwS9VFp1HGAqGr4PKaPUF2guadKFA,2975
|
168
183
|
swift/locale/zh_TW/LC_MESSAGES/swift.po,sha256=ZmyfBdfv8r8H3b-pn9gz88CEsPmNF1M8D0hkkoKTuzI,2957
|
169
184
|
swift/obj/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
170
|
-
swift/obj/auditor.py,sha256=
|
171
|
-
swift/obj/diskfile.py,sha256=
|
172
|
-
swift/obj/expirer.py,sha256=
|
173
|
-
swift/obj/mem_diskfile.py,sha256=
|
174
|
-
swift/obj/mem_server.py,sha256=
|
175
|
-
swift/obj/reconstructor.py,sha256=
|
176
|
-
swift/obj/replicator.py,sha256=
|
177
|
-
swift/obj/server.py,sha256=
|
185
|
+
swift/obj/auditor.py,sha256=T0T2N21ideEqGAapQYRIlK5P73sl8Awfc6c6x3GMPAc,24064
|
186
|
+
swift/obj/diskfile.py,sha256=JffqsdzQYBh6k6pVp1dM3WfKhd-vzPcISU-SDG6U7fE,164636
|
187
|
+
swift/obj/expirer.py,sha256=qBKJKfHbGSvZB4Ckk2bcecCvHeKsEk7OsPk5XNsDJRs,26063
|
188
|
+
swift/obj/mem_diskfile.py,sha256=Eb0K8c97PjKtVTRmz-razWPBFmqQci_R8VGF5CA95TM,17298
|
189
|
+
swift/obj/mem_server.py,sha256=NX_eepTR8VjqlYlbGp2fMNPhDAHqZV8rDosBWf4YyNw,2000
|
190
|
+
swift/obj/reconstructor.py,sha256=c_ifvI3DOEgmaK1vbOpBDYRDfgVYgvqHDuRBYFiiP_c,72027
|
191
|
+
swift/obj/replicator.py,sha256=NewL6rrWm3yE3agj0Gy80RGh_OEhrXXEdDp2ub1Zb8k,53397
|
192
|
+
swift/obj/server.py,sha256=ucYexI6ddULriB1Ne2MDiDOLwOQHTh1g5474T1FICio,68725
|
178
193
|
swift/obj/ssync_receiver.py,sha256=XKPxRMsqg6qqp76gaXzro5a02LLjpqPPHhH4VFftbVE,24684
|
179
194
|
swift/obj/ssync_sender.py,sha256=8xw0SfnYvcmRb9IyUrRVIbC8WsMzRDP_kNrdORWl84Q,24703
|
180
|
-
swift/obj/updater.py,sha256=
|
195
|
+
swift/obj/updater.py,sha256=XWdjySjH6eUYXzEfd1vx12Pa4CvwnNfJMMELW7sy4n8,33614
|
181
196
|
swift/obj/watchers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
182
|
-
swift/obj/watchers/dark_data.py,sha256=
|
197
|
+
swift/obj/watchers/dark_data.py,sha256=cuD7MqOFnlMnagbtAYl3n3N_rgBF4iR9NF3qFstZpCQ,8608
|
183
198
|
swift/proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
184
|
-
swift/proxy/server.py,sha256=
|
199
|
+
swift/proxy/server.py,sha256=lCBgEnHXIdBNkklqYNcLWj5YTWgi6_ZZnz_6sMaKY_g,36689
|
185
200
|
swift/proxy/controllers/__init__.py,sha256=w3H7qtpUavnczPLXJtiaDJISr2TAcihou9Q04ysRg3U,982
|
186
|
-
swift/proxy/controllers/account.py,sha256=
|
187
|
-
swift/proxy/controllers/base.py,sha256=
|
188
|
-
swift/proxy/controllers/container.py,sha256=
|
201
|
+
swift/proxy/controllers/account.py,sha256=0YTa8b0oOvQ2TJ3jVELnPZp1AuiMg0oceZy9wykUmkQ,8391
|
202
|
+
swift/proxy/controllers/base.py,sha256=JWpkm9MdhtF5Z6VmVp-XCbRpUTTsx1SU6-OQRWWEC5I,103339
|
203
|
+
swift/proxy/controllers/container.py,sha256=_JXDujs-AgX3eui327WD3vP7jcsKQCEcyyKdiye8rZU,37114
|
189
204
|
swift/proxy/controllers/info.py,sha256=QSvBwBJjwO3QIktINMCjcYgBi-QAi3wHWKmyf4AtQz8,3859
|
190
|
-
swift/proxy/controllers/obj.py,sha256=
|
191
|
-
swift-2.
|
192
|
-
swift-2.
|
193
|
-
swift-2.
|
194
|
-
swift-2.
|
195
|
-
swift-2.
|
196
|
-
swift-2.
|
197
|
-
swift-2.
|
198
|
-
swift-2.
|
199
|
-
swift-2.32.0.data/scripts/swift-container-info,sha256=E9XsNRZxxRx4U7gnjRwJmO70OZyDzLfON2H90yvobuk,1946
|
200
|
-
swift-2.32.0.data/scripts/swift-container-reconciler,sha256=OkLmgJWhXgyJAyjfMwyXC5YV6hJtLCSFTJCZ8GpSgJE,838
|
201
|
-
swift-2.32.0.data/scripts/swift-container-replicator,sha256=mpTaU5JGCPmP8es4ImDchJcQyjGj1C9YpeyQOg6CxWE,1430
|
202
|
-
swift-2.32.0.data/scripts/swift-container-server,sha256=iJAbVpY3UG85va-4hyLdWwkBGnTeeSS68l__4P-1cQA,849
|
203
|
-
swift-2.32.0.data/scripts/swift-container-sharder,sha256=983bTHxlrcum_ABazWb88yKoBy7Opyy5p9tbIeyk_Gk,1693
|
204
|
-
swift-2.32.0.data/scripts/swift-container-sync,sha256=CstcpsvwRxfKoIlnSRN5JR9DuyWtVFKDTWQoHAhyC4g,869
|
205
|
-
swift-2.32.0.data/scripts/swift-container-updater,sha256=9V8fkM0jikjtAXSm-6Tvx-veJxGXCQyC1W1BMCelNew,878
|
206
|
-
swift-2.32.0.data/scripts/swift-dispersion-populate,sha256=ZC4Z4W4NjmQoQu3L76lJsuOppfy1OBBcr4RIVd3vNGY,11409
|
207
|
-
swift-2.32.0.data/scripts/swift-dispersion-report,sha256=aY4GzuRqTKERW0hm0ot6VYDk139lU1VDP30cjjlo-eA,726
|
208
|
-
swift-2.32.0.data/scripts/swift-drive-audit,sha256=-VqME4BTMs3Trdq6jqfB8M23ChGD9nlWG2rLx1QRxe0,10383
|
209
|
-
swift-2.32.0.data/scripts/swift-form-signature,sha256=2FG-zmTeF0F1xX15_VtWdk4_qeJxutk3S5KdoVk2rF0,681
|
210
|
-
swift-2.32.0.data/scripts/swift-get-nodes,sha256=tKZdixw9GkNWS7GmFMtaqM_RgI_sgikwDbPmeYc12fQ,2817
|
211
|
-
swift-2.32.0.data/scripts/swift-init,sha256=q5NOmFOTWJ34g5L6LwzSXzbGCjt_y3az8iz7wQ1f1rA,5097
|
212
|
-
swift-2.32.0.data/scripts/swift-object-auditor,sha256=wS5U9bhxE28CO72tV5dQKmTaaklyCuAHK_ealswjiXs,1212
|
213
|
-
swift-2.32.0.data/scripts/swift-object-expirer,sha256=8SWD9EU28aEdrDm6qxIGmaH7ACkdn-HX1e3_Lr7vNcs,1494
|
214
|
-
swift-2.32.0.data/scripts/swift-object-info,sha256=3oggJ3ZF531W7LM5CKYR1QEpK1rW2Cdt_3o1zicz1wk,1986
|
215
|
-
swift-2.32.0.data/scripts/swift-object-reconstructor,sha256=dnm1p2jHrES8-6lLNGAEuw0wvrqWiS74mqgLll7LLxI,1431
|
216
|
-
swift-2.32.0.data/scripts/swift-object-relinker,sha256=7_srgcnBhvaPgmifZeRb9IreGR0KeQWxkHeWw1NvY-w,668
|
217
|
-
swift-2.32.0.data/scripts/swift-object-replicator,sha256=aLlEMBR6RVOw8UFm4tqtBZNPntrYxgQHbxjhxMQZVsg,1644
|
218
|
-
swift-2.32.0.data/scripts/swift-object-server,sha256=T9QaeHkKMtTsXpZOCrC_Pj8RE2FQR3foYksjV6vf5tg,970
|
219
|
-
swift-2.32.0.data/scripts/swift-object-updater,sha256=bwG2KI9cGCDPKYzpnfIYHT6x4y1pCJ4dgqUhVZmnxIQ,866
|
220
|
-
swift-2.32.0.data/scripts/swift-oldies,sha256=Wovqw-JpSPp26Bhj_mC42pEzNabNx7H_HGhtyqLtN3s,3346
|
221
|
-
swift-2.32.0.data/scripts/swift-orphans,sha256=LasdlgiZHGpC7U20gHVl49mBDA2C2zj-_llCGKepLJk,5005
|
222
|
-
swift-2.32.0.data/scripts/swift-proxy-server,sha256=xoLrYohQri2cZwOsHB70xHMhLPyspdiTuse0-MdYFOk,845
|
223
|
-
swift-2.32.0.data/scripts/swift-recon,sha256=08VMHgSFgI9w-IND7PjFvyyVwGTJiVAjDEjrQjSMBow,725
|
224
|
-
swift-2.32.0.data/scripts/swift-recon-cron,sha256=7y7_yXMD_DUt_hSWLUjtiGDZFavQw641vfWW0z99VuQ,2911
|
225
|
-
swift-2.32.0.data/scripts/swift-reconciler-enqueue,sha256=MUj9Zo_sgBsHxG-CJ675FiJn0duMa5EJfKZAoiO6mpM,2547
|
226
|
-
swift-2.32.0.data/scripts/swift-ring-builder,sha256=T4fbV9Rf1Sa6eZVnrUNQxo_v9pOsXlKtP5CeI-BV4m8,1093
|
227
|
-
swift-2.32.0.data/scripts/swift-ring-builder-analyzer,sha256=184GLK94EO7EQhO3Rc8G61sPttJVNOqvMZoD_R83bMM,724
|
228
|
-
swift-2.32.0.data/scripts/swift-ring-composer,sha256=AnR7DIcCZ-cgLpgyCiRaDgL1BZaRWJUPhtQ03VhkDKI,700
|
229
|
-
swift-2.32.0.dist-info/AUTHORS,sha256=rgzJnj-X7PE5eC58S6-FTPD0YeuWnLmw7NU5r0R6gvU,17927
|
230
|
-
swift-2.32.0.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
231
|
-
swift-2.32.0.dist-info/METADATA,sha256=xgWW0C4wvCVeb-RoB85nDn97M-U9ZeJ0VHUs2hAJAGA,8673
|
232
|
-
swift-2.32.0.dist-info/WHEEL,sha256=kGT74LWyRUZrL4VgLh6_g12IeVl_9u9ZVhadrgXZUEY,110
|
233
|
-
swift-2.32.0.dist-info/entry_points.txt,sha256=_-B-ljosswQCW6_kbpARA6B2_c0n8sEnFSPQuzuOhkQ,2973
|
234
|
-
swift-2.32.0.dist-info/pbr.json,sha256=PIoNB37U8EXcXDAD-nzGviPelqIh8vdKUBUE981cVl4,48
|
235
|
-
swift-2.32.0.dist-info/top_level.txt,sha256=nVzNOToyzq0MM7JtrpalfOaPV9UIfm_lXhHX0duhVps,6
|
236
|
-
swift-2.32.0.dist-info/RECORD,,
|
205
|
+
swift/proxy/controllers/obj.py,sha256=RZNzjx_UqW_X8qqlRRt8B9600X4VEQUIrFrytSORfD8,149191
|
206
|
+
swift-2.34.0.dist-info/AUTHORS,sha256=Z7RxslERjvhbWgO8F2cfxn9ccH-AvwpK7v0G52eBAlE,18282
|
207
|
+
swift-2.34.0.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
208
|
+
swift-2.34.0.dist-info/METADATA,sha256=444qSA2NeCKmr85F7UUtXQwcITY1dlxUsovMbKNG_xU,8742
|
209
|
+
swift-2.34.0.dist-info/WHEEL,sha256=kGT74LWyRUZrL4VgLh6_g12IeVl_9u9ZVhadrgXZUEY,110
|
210
|
+
swift-2.34.0.dist-info/entry_points.txt,sha256=-ZUwCyKbiL2gTvd7X2gLEGno319gApVKBENA-5ED4Ko,4925
|
211
|
+
swift-2.34.0.dist-info/pbr.json,sha256=GKlZK3fFYdawi1EUrXg5yOLWYtKLKMbUyeriZ0ZdklY,48
|
212
|
+
swift-2.34.0.dist-info/top_level.txt,sha256=nVzNOToyzq0MM7JtrpalfOaPV9UIfm_lXhHX0duhVps,6
|
213
|
+
swift-2.34.0.dist-info/RECORD,,
|
@@ -1,6 +1,45 @@
|
|
1
1
|
[console_scripts]
|
2
|
+
swift-account-audit = swift.cli.account_audit:main
|
3
|
+
swift-account-auditor = swift.account.auditor:main
|
4
|
+
swift-account-info = swift.cli.info:account_main
|
5
|
+
swift-account-reaper = swift.account.reaper:main
|
6
|
+
swift-account-replicator = swift.account.replicator:main
|
7
|
+
swift-account-server = swift.account.server:main
|
8
|
+
swift-config = swift.cli.config:main
|
9
|
+
swift-container-auditor = swift.container.auditor:main
|
2
10
|
swift-container-deleter = swift.cli.container_deleter:main
|
11
|
+
swift-container-info = swift.cli.info:container_main
|
12
|
+
swift-container-reconciler = swift.container.reconciler:main
|
13
|
+
swift-container-replicator = swift.container.replicator:main
|
14
|
+
swift-container-server = swift.container.server:main
|
15
|
+
swift-container-sharder = swift.container.sharder:main
|
16
|
+
swift-container-sync = swift.container.sync:main
|
17
|
+
swift-container-updater = swift.container.updater:main
|
18
|
+
swift-dispersion-populate = swift.cli.dispersion_populate:main
|
19
|
+
swift-dispersion-report = swift.cli.dispersion_report:main
|
20
|
+
swift-drive-audit = swift.cli.drive_audit:main
|
21
|
+
swift-form-signature = swift.cli.form_signature:main
|
22
|
+
swift-get-nodes = swift.cli.get_nodes:main
|
23
|
+
swift-init = swift.common.manager:main
|
3
24
|
swift-manage-shard-ranges = swift.cli.manage_shard_ranges:main
|
25
|
+
swift-object-auditor = swift.obj.auditor:main
|
26
|
+
swift-object-expirer = swift.obj.expirer:main
|
27
|
+
swift-object-info = swift.cli.info:obj_main
|
28
|
+
swift-object-reconstructor = swift.obj.reconstructor:main
|
29
|
+
swift-object-relinker = swift.cli.relinker:main
|
30
|
+
swift-object-replicator = swift.obj.replicator:main
|
31
|
+
swift-object-server = swift.obj.server:main
|
32
|
+
swift-object-updater = swift.obj.updater:main
|
33
|
+
swift-oldies = swift.cli.oldies:main
|
34
|
+
swift-orphans = swift.cli.orphans:main
|
35
|
+
swift-proxy-server = swift.proxy.server:main
|
36
|
+
swift-recon = swift.cli.recon:main
|
37
|
+
swift-recon-cron = swift.cli.recon_cron:main
|
38
|
+
swift-reconciler-enqueue = swift.cli.reconciler_enqueue:main
|
39
|
+
swift-reload = swift.cli.reload:main
|
40
|
+
swift-ring-builder = swift.cli.ringbuilder:error_handling_main
|
41
|
+
swift-ring-builder-analyzer = swift.cli.ring_builder_analyzer:main
|
42
|
+
swift-ring-composer = swift.cli.ringcomposer:main
|
4
43
|
|
5
44
|
[paste.app_factory]
|
6
45
|
account = swift.account.server:app_factory
|
@@ -0,0 +1 @@
|
|
1
|
+
{"git_version": "0e41e1790", "is_release": true}
|
@@ -1,23 +0,0 @@
|
|
1
|
-
#!python
|
2
|
-
# Copyright (c) 2010-2012 OpenStack Foundation
|
3
|
-
#
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
# you may not use this file except in compliance with the License.
|
6
|
-
# You may obtain a copy of the License at
|
7
|
-
#
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
#
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
13
|
-
# implied.
|
14
|
-
# See the License for the specific language governing permissions and
|
15
|
-
# limitations under the License.
|
16
|
-
|
17
|
-
from swift.account.auditor import AccountAuditor
|
18
|
-
from swift.common.utils import parse_options
|
19
|
-
from swift.common.daemon import run_daemon
|
20
|
-
|
21
|
-
if __name__ == '__main__':
|
22
|
-
conf_file, options = parse_options(once=True)
|
23
|
-
run_daemon(AccountAuditor, conf_file, **options)
|