swift 2.33.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 +12 -1
- swift-2.33.0.data/scripts/swift-account-audit → swift/cli/account_audit.py +6 -2
- swift-2.33.0.data/scripts/swift-config → swift/cli/config.py +1 -1
- swift-2.33.0.data/scripts/swift-dispersion-populate → swift/cli/dispersion_populate.py +6 -2
- swift-2.33.0.data/scripts/swift-drive-audit → swift/cli/drive_audit.py +12 -3
- swift-2.33.0.data/scripts/swift-get-nodes → swift/cli/get_nodes.py +6 -2
- swift/cli/info.py +103 -2
- swift-2.33.0.data/scripts/swift-oldies → swift/cli/oldies.py +6 -3
- swift-2.33.0.data/scripts/swift-orphans → swift/cli/orphans.py +7 -2
- swift/cli/recon_cron.py +5 -5
- swift-2.33.0.data/scripts/swift-reconciler-enqueue → swift/cli/reconciler_enqueue.py +2 -3
- swift/cli/relinker.py +1 -1
- swift/cli/ringbuilder.py +24 -0
- swift/common/db.py +2 -1
- swift/common/db_auditor.py +2 -2
- swift/common/db_replicator.py +6 -0
- swift/common/exceptions.py +12 -0
- swift/common/manager.py +102 -0
- swift/common/memcached.py +6 -13
- 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 +22 -16
- swift/common/middleware/ratelimit.py +6 -7
- swift/common/middleware/recon.py +6 -7
- swift/common/middleware/s3api/acl_handlers.py +9 -0
- swift/common/middleware/s3api/controllers/multi_upload.py +1 -9
- swift/common/middleware/s3api/controllers/obj.py +20 -1
- swift/common/middleware/s3api/s3api.py +2 -0
- swift/common/middleware/s3api/s3request.py +171 -62
- swift/common/middleware/s3api/s3response.py +35 -6
- swift/common/middleware/s3api/s3token.py +2 -2
- swift/common/middleware/s3api/utils.py +1 -0
- swift/common/middleware/slo.py +153 -52
- swift/common/middleware/tempauth.py +6 -4
- swift/common/middleware/tempurl.py +2 -2
- 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 +69 -0
- swift/common/statsd_client.py +207 -0
- swift/common/utils/__init__.py +97 -1635
- swift/common/utils/base.py +138 -0
- swift/common/utils/config.py +443 -0
- swift/common/utils/logs.py +999 -0
- swift/common/wsgi.py +11 -3
- swift/container/auditor.py +11 -0
- swift/container/backend.py +10 -10
- swift/container/reconciler.py +11 -2
- swift/container/replicator.py +22 -1
- swift/container/server.py +12 -1
- swift/container/sharder.py +36 -12
- swift/container/sync.py +11 -1
- swift/container/updater.py +11 -2
- swift/obj/auditor.py +18 -2
- swift/obj/diskfile.py +8 -6
- swift/obj/expirer.py +155 -36
- swift/obj/reconstructor.py +28 -4
- swift/obj/replicator.py +61 -22
- swift/obj/server.py +64 -36
- swift/obj/updater.py +11 -2
- swift/proxy/controllers/base.py +38 -22
- swift/proxy/controllers/obj.py +23 -26
- swift/proxy/server.py +15 -1
- {swift-2.33.0.dist-info → swift-2.34.0.dist-info}/AUTHORS +11 -3
- {swift-2.33.0.dist-info → swift-2.34.0.dist-info}/METADATA +6 -5
- {swift-2.33.0.dist-info → swift-2.34.0.dist-info}/RECORD +81 -107
- {swift-2.33.0.dist-info → swift-2.34.0.dist-info}/entry_points.txt +38 -0
- swift-2.34.0.dist-info/pbr.json +1 -0
- swift-2.33.0.data/scripts/swift-account-auditor +0 -23
- swift-2.33.0.data/scripts/swift-account-info +0 -52
- swift-2.33.0.data/scripts/swift-account-reaper +0 -23
- swift-2.33.0.data/scripts/swift-account-replicator +0 -34
- swift-2.33.0.data/scripts/swift-account-server +0 -23
- swift-2.33.0.data/scripts/swift-container-auditor +0 -23
- swift-2.33.0.data/scripts/swift-container-info +0 -59
- swift-2.33.0.data/scripts/swift-container-reconciler +0 -21
- swift-2.33.0.data/scripts/swift-container-replicator +0 -34
- swift-2.33.0.data/scripts/swift-container-server +0 -23
- swift-2.33.0.data/scripts/swift-container-sharder +0 -37
- swift-2.33.0.data/scripts/swift-container-sync +0 -23
- swift-2.33.0.data/scripts/swift-container-updater +0 -23
- swift-2.33.0.data/scripts/swift-dispersion-report +0 -24
- swift-2.33.0.data/scripts/swift-form-signature +0 -20
- swift-2.33.0.data/scripts/swift-init +0 -119
- swift-2.33.0.data/scripts/swift-object-auditor +0 -29
- swift-2.33.0.data/scripts/swift-object-expirer +0 -33
- swift-2.33.0.data/scripts/swift-object-info +0 -60
- swift-2.33.0.data/scripts/swift-object-reconstructor +0 -33
- swift-2.33.0.data/scripts/swift-object-relinker +0 -23
- swift-2.33.0.data/scripts/swift-object-replicator +0 -37
- swift-2.33.0.data/scripts/swift-object-server +0 -27
- swift-2.33.0.data/scripts/swift-object-updater +0 -23
- swift-2.33.0.data/scripts/swift-proxy-server +0 -23
- swift-2.33.0.data/scripts/swift-recon +0 -24
- swift-2.33.0.data/scripts/swift-recon-cron +0 -24
- swift-2.33.0.data/scripts/swift-ring-builder +0 -37
- swift-2.33.0.data/scripts/swift-ring-builder-analyzer +0 -22
- swift-2.33.0.data/scripts/swift-ring-composer +0 -22
- swift-2.33.0.dist-info/pbr.json +0 -1
- {swift-2.33.0.dist-info → swift-2.34.0.dist-info}/LICENSE +0 -0
- {swift-2.33.0.dist-info → swift-2.34.0.dist-info}/WHEEL +0 -0
- {swift-2.33.0.dist-info → swift-2.34.0.dist-info}/top_level.txt +0 -0
@@ -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)
|
@@ -287,7 +290,7 @@ lvxianguo (lvxianguo@inspur.com)
|
|
287
290
|
M V P Nitesh (m.nitesh@nectechnologies.in)
|
288
291
|
Madhuri Kumari (madhuri.rai07@gmail.com)
|
289
292
|
Mahati Chamarthy (mahati.chamarthy@gmail.com)
|
290
|
-
Mandell Degerness (mdegerness@
|
293
|
+
Mandell Degerness (mdegerness@nvidia.com)
|
291
294
|
manuvakery1 (manu.km@idrive.com)
|
292
295
|
maoshuai (fwsakura@163.com)
|
293
296
|
Marcelo Martins (btorch@gmail.com)
|
@@ -315,11 +318,14 @@ Mingyu Li (li.mingyu@99cloud.net)
|
|
315
318
|
Minwoo Bae (minwoob@us.ibm.com)
|
316
319
|
Mitsuhiro SHIGEMATSU (shigematsu.mitsuhiro@lab.ntt.co.jp)
|
317
320
|
mmcardle (mark.mcardle@sohonet.com)
|
321
|
+
Mohamed Hassaneen (mohammedashoor89@gmail.com)
|
322
|
+
Mohammed Al-Jawaheri (mjawaheri02@gmail.com)
|
318
323
|
Mohit Motiani (mohit.motiani@intel.com)
|
319
324
|
Monty Taylor (mordred@inaugust.com)
|
320
325
|
Morgan Fainberg (morgan.fainberg@gmail.com)
|
321
326
|
Morita Kazutaka (morita.kazutaka@gmail.com)
|
322
327
|
Motonobu Ichimura (motonobu@gmail.com)
|
328
|
+
Nada El-Mestkawy (nadamaged05@gmail.com)
|
323
329
|
Nadeem Syed (snadeem.hameed@gmail.com)
|
324
330
|
Nakagawa Masaaki (nakagawamsa@nttdata.co.jp)
|
325
331
|
Nakul Dahiwade (nakul.dahiwade@intel.com)
|
@@ -354,7 +360,7 @@ Pavel Kvasnička (pavel.kvasnicka@firma.seznam.cz)
|
|
354
360
|
Pawel Palucki (pawel.palucki@gmail.com)
|
355
361
|
Pearl Yajing Tan (pearl.y.tan@seagate.com)
|
356
362
|
pengyuesheng (pengyuesheng@gohighsec.com)
|
357
|
-
Pete Zaitcev (zaitcev@
|
363
|
+
Pete Zaitcev (zaitcev@yahoo.com)
|
358
364
|
Peter Lisák (peter.lisak@gmail.com)
|
359
365
|
Peter Portante (peter.portante@redhat.com)
|
360
366
|
Petr Kovar (pkovar@redhat.com)
|
@@ -426,6 +432,7 @@ Tomas Matlocha (tomas.matlocha@firma.seznam.cz)
|
|
426
432
|
tone-zhang (tone.zhang@linaro.org)
|
427
433
|
Tong Li (litong01@us.ibm.com)
|
428
434
|
Tovin Seven (vinhnt@vn.fujitsu.com)
|
435
|
+
Tra Bui (trabui.0517@gmail.com)
|
429
436
|
Travis McPeak (tmcpeak@us.ibm.com)
|
430
437
|
Tushar Gohad (tushar.gohad@intel.com)
|
431
438
|
Van Hung Pham (hungpv@vn.fujitsu.com)
|
@@ -453,6 +460,7 @@ Wyllys Ingersoll (wyllys.ingersoll@evault.com)
|
|
453
460
|
xhancar (pavel.hancar@gmail.com)
|
454
461
|
XieYingYun (smokony@sina.com)
|
455
462
|
Yaguang Wang (yaguang.wang@intel.com)
|
463
|
+
Yan Xiao (yanxiao@nvidia.com)
|
456
464
|
yanghuichan (yanghc@fiberhome.com)
|
457
465
|
Yatin Kumbhare (yatinkumbhare@gmail.com)
|
458
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
|
@@ -27,12 +27,14 @@ Classifier: Programming Language :: Python :: 3.8
|
|
27
27
|
Classifier: Programming Language :: Python :: 3.9
|
28
28
|
Classifier: Programming Language :: Python :: 3.10
|
29
29
|
Classifier: Programming Language :: Python :: 3.11
|
30
|
+
Classifier: Programming Language :: Python :: 3.12
|
31
|
+
Description-Content-Type: text/x-rst
|
30
32
|
Requires-Dist: PasteDeploy (>=2.0.0)
|
31
33
|
Requires-Dist: PyECLib (>=1.3.1)
|
32
34
|
Requires-Dist: cryptography (>=2.0.2)
|
33
35
|
Requires-Dist: eventlet (!=0.34.3,>=0.25.0)
|
34
36
|
Requires-Dist: greenlet (>=0.3.2)
|
35
|
-
Requires-Dist: lxml (>=
|
37
|
+
Requires-Dist: lxml (>=4.2.3)
|
36
38
|
Requires-Dist: requests (>=2.14.2)
|
37
39
|
Requires-Dist: six (>=1.10.0)
|
38
40
|
Requires-Dist: xattr (>=0.4) ; (sys_platform!='win32')
|
@@ -52,7 +54,7 @@ Requires-Dist: coverage (>=5.0.4) ; extra == 'test'
|
|
52
54
|
Requires-Dist: docutils (>=0.11) ; extra == 'test'
|
53
55
|
Requires-Dist: hacking (<6.2.0,>=2.0) ; extra == 'test'
|
54
56
|
Requires-Dist: keystonemiddleware (>=4.17.0) ; extra == 'test'
|
55
|
-
Requires-Dist: mock (>=
|
57
|
+
Requires-Dist: mock (>=3.0) ; extra == 'test'
|
56
58
|
Requires-Dist: pytest-cov (>=2.12.1) ; extra == 'test'
|
57
59
|
Requires-Dist: pytest (>=4.6.11) ; extra == 'test'
|
58
60
|
Requires-Dist: python-keystoneclient (!=2.1.0,>=2.0.0) ; extra == 'test'
|
@@ -153,14 +155,13 @@ tests should still pass, but a very large number will be skipped.
|
|
153
155
|
Code Organization
|
154
156
|
~~~~~~~~~~~~~~~~~
|
155
157
|
|
156
|
-
- bin/: Executable scripts that are the processes run by the deployer
|
157
158
|
- doc/: Documentation
|
158
159
|
- etc/: Sample config files
|
159
160
|
- examples/: Config snippets used in the docs
|
160
161
|
- swift/: Core code
|
161
162
|
|
162
163
|
- account/: account server
|
163
|
-
- cli/: code that backs some of the CLI tools
|
164
|
+
- cli/: code that backs some of the CLI tools
|
164
165
|
- common/: code shared by different modules
|
165
166
|
|
166
167
|
- middleware/: "standard", officially-supported middleware
|
@@ -1,23 +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/recon_cron.py,sha256=
|
17
|
-
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
|
18
26
|
swift/cli/reload.py,sha256=HiS9OnARFq7WaGdSflAlEzr3_KEpdsSKpE7Lh883gOo,5074
|
19
27
|
swift/cli/ring_builder_analyzer.py,sha256=Ak_qi_UnQU7509RQunK6ANB1b_MW_GL1MnxOHAxjLKA,11977
|
20
|
-
swift/cli/ringbuilder.py,sha256=
|
28
|
+
swift/cli/ringbuilder.py,sha256=RipluXW_Iqqo_bpvRJhE6P9Vexw-kZ-1an8TAmbcwYY,64261
|
21
29
|
swift/cli/ringcomposer.py,sha256=pXzs9LbE8RA6z6uDRBb-zvrsGkLSxVsuz58LCcxMNCo,6553
|
22
30
|
swift/cli/shard-info.py,sha256=rMEMaAS4ms8iNvxuBFhm8yfH2FfgS7okWZB0wifLZHA,7462
|
23
31
|
swift/common/__init__.py,sha256=E68YBcsI0CguVRZOPIx-uJaAq32swceKJwT8a4F6-G4,35
|
@@ -26,36 +34,37 @@ swift/common/bufferedhttp.py,sha256=6fj7kPKFaab9alhjE5KVTyQh9jtHJEt7bHZ6VDdonPM,
|
|
26
34
|
swift/common/constraints.py,sha256=RjHQX0Cptjns1XdRzaJKLYOkG0aTujLSdUWNq7on3q0,17419
|
27
35
|
swift/common/container_sync_realms.py,sha256=1zF3-nROq61h0WCwk3xkGrkSRBYsGc7M2II-zAfWu0Y,6466
|
28
36
|
swift/common/daemon.py,sha256=gOELERtkPd-sM9_1n6YK7bVjaPW6AYvbKWaOdqnij84,12279
|
29
|
-
swift/common/db.py,sha256=
|
30
|
-
swift/common/db_auditor.py,sha256=
|
31
|
-
swift/common/db_replicator.py,sha256=
|
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
|
32
40
|
swift/common/digest.py,sha256=Aav-FHVHFnNmr8krFvVzZUFcBJhaDN38MiYSi4xz5l4,5564
|
33
41
|
swift/common/direct_client.py,sha256=D0vZOQDq3-_KjQXfEngdpbxEPnW2Eoto6oh-zuYoR3g,29707
|
34
42
|
swift/common/error_limiter.py,sha256=-jrHWmQ8gHOsuijy_s7YNxorfI8VynvP-mGJm8V-Plk,3466
|
35
|
-
swift/common/exceptions.py,sha256=
|
43
|
+
swift/common/exceptions.py,sha256=rtTP5-2u12Fkh0zZNrmyxzSJ2xmVqcCeIGnVQOOnSyY,6024
|
36
44
|
swift/common/header_key_dict.py,sha256=xO0O7eJrrvGtu1NjaTP-WxygKscWAuhWNSRZJxp3mdI,2466
|
37
45
|
swift/common/http.py,sha256=ih6tclv8ZAo1BcQOZ-Z54J6T_-yiebfkS0_Qtg618EE,4623
|
38
46
|
swift/common/http_protocol.py,sha256=_hp50TKFKN0935jvG6jk346GwfSg6GBhMnuLaK93L3c,17165
|
39
47
|
swift/common/internal_client.py,sha256=d0-WqfEF5dvRlIqVBo1pHxQ06Btx3G9zVPXHDCMw_lA,41295
|
40
48
|
swift/common/linkat.py,sha256=YV2ZtVCcJ4PKBmkrUuT3ho8gmdRsmrVYLNdoqk-JITs,2389
|
41
|
-
swift/common/manager.py,sha256=
|
42
|
-
swift/common/memcached.py,sha256=
|
49
|
+
swift/common/manager.py,sha256=5A4z6m1FodefmznB6WhVtr36-uzakgCRwGpd8JblYHg,36763
|
50
|
+
swift/common/memcached.py,sha256=1dWdcwZiNLocuC3N3EIBNQQDwVJl79_WVvI7hevwlpI,31982
|
43
51
|
swift/common/recon.py,sha256=Geo6_Sv436yfUGC2xwPWTW6B6Clw-OumBTBvOq82j_M,1109
|
44
52
|
swift/common/registry.py,sha256=aXhoX-s3aY9HhfA6URs0k0Dg2sHh4v032Nl0jDLwHXc,5350
|
45
|
-
swift/common/request_helpers.py,sha256=
|
53
|
+
swift/common/request_helpers.py,sha256=TvF56XK0V0SjevrWsXqh35mPADAhaHX-5iRNojWWyXQ,39903
|
46
54
|
swift/common/splice.py,sha256=ES7GuXDkctf9h2IaR3dF3sC6jOF2zyIoIgXq4MlQitc,5423
|
55
|
+
swift/common/statsd_client.py,sha256=XcrrpDuBNoDnqDB4Fm7Rl5LfjSS5BWPVyxC7zl0Bhx4,8252
|
47
56
|
swift/common/storage_policy.py,sha256=4wrOBG0eg_8aJhal40PQFpffl_lGMBfj3pAkPQpfgBQ,37407
|
48
57
|
swift/common/swob.py,sha256=BbNTY_bKL-l1qb8JEXCVk98RHSDfjVNTpYEnwyGXMlc,62128
|
49
|
-
swift/common/wsgi.py,sha256=
|
58
|
+
swift/common/wsgi.py,sha256=zl13nfamJfz4VQPSwcORIsV2tgRodoU_Q-mZ6m4MS0g,49900
|
50
59
|
swift/common/middleware/__init__.py,sha256=idMQFpmj3W1pOF4yFE_FrnmYLbZNaVhIy6S3_IPP0no,1503
|
51
|
-
swift/common/middleware/account_quotas.py,sha256=
|
60
|
+
swift/common/middleware/account_quotas.py,sha256=BV30pLWKs_uXPgBe9JT1m-IbwUs51a1RHqMHioCAd8c,12886
|
52
61
|
swift/common/middleware/acl.py,sha256=nP4pZDBZbS1WvHjcvSHzS0lhTJzRVmDZzibujUHK6c0,11619
|
53
|
-
swift/common/middleware/backend_ratelimit.py,sha256=
|
62
|
+
swift/common/middleware/backend_ratelimit.py,sha256=cWk763mcR1TVWpr3NdwMxylVZ1KlCLMWrqegnXpOoQA,10029
|
54
63
|
swift/common/middleware/bulk.py,sha256=HXEfJnxed_9ZXc1hJ5fRwQQMo1uCcP3pDMpo62inUVo,35716
|
55
|
-
swift/common/middleware/catch_errors.py,sha256=
|
56
|
-
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
|
57
66
|
swift/common/middleware/container_quotas.py,sha256=I5S9ZK5IYs4kv-kzBeZ4Exdg2Vx2fPPS0kb4IzIJPRw,5444
|
58
|
-
swift/common/middleware/container_sync.py,sha256
|
67
|
+
swift/common/middleware/container_sync.py,sha256=-oEx30ZnZzXRQwuI3cHXM-WYDGtIMX_5mF5uXFmfPM8,7397
|
59
68
|
swift/common/middleware/copy.py,sha256=NUTeuyHt9gaLakwy_tZq31qe056FREXLFZYcC5x6JAI,19602
|
60
69
|
swift/common/middleware/crossdomain.py,sha256=iCzBcfEV3z2wBTwnv_iE3TZ2ZqQNGJiVs-ZNJn7XVfk,3813
|
61
70
|
swift/common/middleware/dlo.py,sha256=a1trnB19DF3Y04FfVvTRSaSWwCj23odhWmsB3ap4xug,20396
|
@@ -69,34 +78,34 @@ swift/common/middleware/list_endpoints.py,sha256=LkBJhLoREsw7Sy3O0HEOEXO8k2N4sx3
|
|
69
78
|
swift/common/middleware/listing_formats.py,sha256=GEKnBQAe3f0_4NQcLahL9aD8UFNzvzkji-GLBdvksB8,10610
|
70
79
|
swift/common/middleware/memcache.py,sha256=YENYsIaZZ1wM1IWfmlJzVrAfF0Eb0HF8YAwuj1HupoY,1308
|
71
80
|
swift/common/middleware/name_check.py,sha256=K3PzYs7lW1fe7anYFdcC6ijMChcsvNbtw4Sio8Dec_8,5366
|
72
|
-
swift/common/middleware/proxy_logging.py,sha256=
|
73
|
-
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
|
74
83
|
swift/common/middleware/read_only.py,sha256=ukXiA8Dv4JXJsRWkviEJX6dqvTVT8skpE6LFIp2T3mM,4559
|
75
|
-
swift/common/middleware/recon.py,sha256=
|
76
|
-
swift/common/middleware/slo.py,sha256=
|
84
|
+
swift/common/middleware/recon.py,sha256=kJds4B7JVIaHJeN3UzA9qSBYImrzd7u77z1vSaj8tK4,18114
|
85
|
+
swift/common/middleware/slo.py,sha256=SS3GbOEFqLvwOCeQQm3AVGntMNtCcu7v9QVafJYwwxU,84912
|
77
86
|
swift/common/middleware/staticweb.py,sha256=oNxI2t9un_osgtDF2Q-hinsGdjHHA7W1sza3rNE43xk,26185
|
78
87
|
swift/common/middleware/symlink.py,sha256=qzKpxDg1400uYCVs2ia0f-cz2Ty--sP70qALymCsWfw,35236
|
79
|
-
swift/common/middleware/tempauth.py,sha256=
|
80
|
-
swift/common/middleware/tempurl.py,sha256=
|
81
|
-
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
|
82
91
|
swift/common/middleware/crypto/__init__.py,sha256=ZI-Tnqg3AMVgDzAhkWFtAlKFJqXGAzYMzSquwK2OnUk,1498
|
83
|
-
swift/common/middleware/crypto/crypto_utils.py,sha256=
|
84
|
-
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
|
85
94
|
swift/common/middleware/crypto/encrypter.py,sha256=T7Av_gj2H6gSCf74uYiIJDhD2Cg_dX6vUDr4x2Q5m08,17084
|
86
95
|
swift/common/middleware/crypto/keymaster.py,sha256=FRSdpwePc0bjbd9MBrsEcgLvqZzxlzn1PrxmWEFoaOI,17436
|
87
96
|
swift/common/middleware/crypto/kmip_keymaster.py,sha256=aC3RZlFnYEimO3EslaGwOfUNWLRRs6v86mlOcJXqdb0,7128
|
88
|
-
swift/common/middleware/crypto/kms_keymaster.py,sha256=
|
97
|
+
swift/common/middleware/crypto/kms_keymaster.py,sha256=g_sAx8UZL5td5HZ5w0SPgzcz6e8Astj5eomRjiXsGiw,5136
|
89
98
|
swift/common/middleware/s3api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
|
-
swift/common/middleware/s3api/acl_handlers.py,sha256=
|
99
|
+
swift/common/middleware/s3api/acl_handlers.py,sha256=KVmLYcxSL2pEjmf4gRvmSZjhhj-XTw4DPBM4RVZTar4,17294
|
91
100
|
swift/common/middleware/s3api/acl_utils.py,sha256=9_YeR76DqKgHNYtxUZbHMRjvVctgI22Q151i6IRyx2U,3902
|
92
101
|
swift/common/middleware/s3api/etree.py,sha256=zoWYOIutUcdVoYbxWgdBiuv_UJMztwDj7DscwLg2-og,4800
|
93
102
|
swift/common/middleware/s3api/exception.py,sha256=b2a1dlC0oyG38EZ7dzYLrIQf1XOk9srgMzN-NDZS9cc,857
|
94
|
-
swift/common/middleware/s3api/s3api.py,sha256=
|
95
|
-
swift/common/middleware/s3api/s3request.py,sha256=
|
96
|
-
swift/common/middleware/s3api/s3response.py,sha256=
|
97
|
-
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
|
98
107
|
swift/common/middleware/s3api/subresource.py,sha256=CLu6YKDYdsV5JwIy7ohYWlDb9ZrSS8nQX-YqbLNtC7A,18381
|
99
|
-
swift/common/middleware/s3api/utils.py,sha256=
|
108
|
+
swift/common/middleware/s3api/utils.py,sha256=qVuNAXJaDn-Ggep5qmQsXJ-ePzRk6jEqYcRdrTRCei8,6612
|
100
109
|
swift/common/middleware/s3api/controllers/__init__.py,sha256=Hx-o3JZppQWDVPwCinKzdetncL2CDStZKszu5HZVR2U,2175
|
101
110
|
swift/common/middleware/s3api/controllers/acl.py,sha256=09FxC6xFP39tDD1dOTzq61UCHAMISmiww4EqakpYnhQ,4914
|
102
111
|
swift/common/middleware/s3api/controllers/base.py,sha256=1Nk1d_R8xJRZhSx8Kxdn0Inew-mXgUHLDrHHbarnBT0,2947
|
@@ -104,8 +113,8 @@ swift/common/middleware/s3api/controllers/bucket.py,sha256=u55Ttqb1AYK6RySO3_if5
|
|
104
113
|
swift/common/middleware/s3api/controllers/location.py,sha256=LZmlOaZ5pyhGV28oijnTxWMC-qaWHDup_77O4qeRQdE,1410
|
105
114
|
swift/common/middleware/s3api/controllers/logging.py,sha256=rjE1njO4M1vEajSJ5oDRVg-aATTegOity6w_Fqhvb24,1679
|
106
115
|
swift/common/middleware/s3api/controllers/multi_delete.py,sha256=-1OVeqK6vHst2Jeg2lWzW2r6IcYbNJGLhnAOxXUlghw,7497
|
107
|
-
swift/common/middleware/s3api/controllers/multi_upload.py,sha256=
|
108
|
-
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
|
109
118
|
swift/common/middleware/s3api/controllers/object_lock.py,sha256=RXQeyC7q9MoRCuysMmPfloZZDiMDo6rji2okBzcXdQ8,1469
|
110
119
|
swift/common/middleware/s3api/controllers/s3_acl.py,sha256=G7uKZcLMCPwMndymMMFfs9a66AyWpk3k0wTPCm-S7Aw,2097
|
111
120
|
swift/common/middleware/s3api/controllers/service.py,sha256=6DXsCxflLy85GcaqT1dA7GBO2dzpaVXuoWIBVb8xDeQ,2526
|
@@ -135,28 +144,31 @@ swift/common/middleware/versioned_writes/__init__.py,sha256=l1Mn8U28876YDf5dVFkG
|
|
135
144
|
swift/common/middleware/versioned_writes/legacy.py,sha256=OLXfy7h_P-zyBDbxRjhrNe9rOUzREbuSRC5mi9oHJo8,38701
|
136
145
|
swift/common/middleware/versioned_writes/object_versioning.py,sha256=HAxehk0_f7LiLeHEeE3IScxGGfFMNaeEr8weQILNVvc,66014
|
137
146
|
swift/common/middleware/x_profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
138
|
-
swift/common/middleware/x_profile/exceptions.py,sha256=
|
139
|
-
swift/common/middleware/x_profile/html_viewer.py,sha256=
|
140
|
-
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
|
141
150
|
swift/common/ring/__init__.py,sha256=WgGFseZj8r2UtBCBcZiCgzbUoWCGv4ND1MCEv5IW7aA,758
|
142
151
|
swift/common/ring/builder.py,sha256=N61Pcx2vX7JAnEdXR3HR12vd9iC4htOImo-rBKuswf0,81478
|
143
152
|
swift/common/ring/composite_builder.py,sha256=IY4Q6Bul4yJDPVdRGr6iMt1KSh3sDmEo22YZJqxrm58,31543
|
144
153
|
swift/common/ring/ring.py,sha256=5RVbpjqiaIt_dlRTHz-8KYr0S6OiNzLFsY5IsVfAlwg,24275
|
145
154
|
swift/common/ring/utils.py,sha256=nMd8q_kvMkj81XBzfDc3S8zw1YG_oWgK3PyzFZSy5Q4,26083
|
146
|
-
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
|
147
158
|
swift/common/utils/ipaddrs.py,sha256=ZsLWg48yItpQhRSGFdzoLMVqY2k3wRX0YM5boYEJVsY,8550
|
148
159
|
swift/common/utils/libc.py,sha256=Vouiaczjt100Opr5kDeRNiCxFDtQgJPU0E17aH1NGTk,12084
|
160
|
+
swift/common/utils/logs.py,sha256=Rx__l_NIHxPamJysar1wrKRmkbFPBdTeWGxkgaG-Ssk,35071
|
149
161
|
swift/common/utils/timestamp.py,sha256=-GZRxoZ5Sw_b7-jAyesnVS9WzjEIFm8FaH1Zmz2XxCg,15392
|
150
162
|
swift/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
151
|
-
swift/container/auditor.py,sha256=
|
152
|
-
swift/container/backend.py,sha256
|
153
|
-
swift/container/reconciler.py,sha256=
|
154
|
-
swift/container/replicator.py,sha256
|
155
|
-
swift/container/server.py,sha256=
|
156
|
-
swift/container/sharder.py,sha256=
|
157
|
-
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
|
158
170
|
swift/container/sync_store.py,sha256=f2bPjM6uyW7dg9QUkhJR1G2L-CSmADbS_jL-d-9SNwI,6843
|
159
|
-
swift/container/updater.py,sha256=
|
171
|
+
swift/container/updater.py,sha256=JnucKubL5fP1dkbL68bPvoVrEP7q4WvXinGecq1OiDo,15628
|
160
172
|
swift/locale/de/LC_MESSAGES/swift.po,sha256=h5X1YqXO7oPaGJ-zZ2KAwO8UtunD_viSHPSiy24s1TA,4163
|
161
173
|
swift/locale/en_GB/LC_MESSAGES/swift.po,sha256=AM0-3U_h44llPb65iXb-L4Kd9tPRpLxWhjsl7gIxCmE,3915
|
162
174
|
swift/locale/es/LC_MESSAGES/swift.po,sha256=ivBdhGNuQ5JgbYrxzSyLwfdL9wmtP81wA2Lw6AwEnco,3583
|
@@ -170,70 +182,32 @@ swift/locale/tr_TR/LC_MESSAGES/swift.po,sha256=aelAgGrepJzS1zhL2iB-_Oof-9auaQZRW
|
|
170
182
|
swift/locale/zh_CN/LC_MESSAGES/swift.po,sha256=80GHED9QBvQyNwRwS9VFp1HGAqGr4PKaPUF2guadKFA,2975
|
171
183
|
swift/locale/zh_TW/LC_MESSAGES/swift.po,sha256=ZmyfBdfv8r8H3b-pn9gz88CEsPmNF1M8D0hkkoKTuzI,2957
|
172
184
|
swift/obj/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
173
|
-
swift/obj/auditor.py,sha256=
|
174
|
-
swift/obj/diskfile.py,sha256=
|
175
|
-
swift/obj/expirer.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
|
176
188
|
swift/obj/mem_diskfile.py,sha256=Eb0K8c97PjKtVTRmz-razWPBFmqQci_R8VGF5CA95TM,17298
|
177
189
|
swift/obj/mem_server.py,sha256=NX_eepTR8VjqlYlbGp2fMNPhDAHqZV8rDosBWf4YyNw,2000
|
178
|
-
swift/obj/reconstructor.py,sha256=
|
179
|
-
swift/obj/replicator.py,sha256=
|
180
|
-
swift/obj/server.py,sha256=
|
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
|
181
193
|
swift/obj/ssync_receiver.py,sha256=XKPxRMsqg6qqp76gaXzro5a02LLjpqPPHhH4VFftbVE,24684
|
182
194
|
swift/obj/ssync_sender.py,sha256=8xw0SfnYvcmRb9IyUrRVIbC8WsMzRDP_kNrdORWl84Q,24703
|
183
|
-
swift/obj/updater.py,sha256=
|
195
|
+
swift/obj/updater.py,sha256=XWdjySjH6eUYXzEfd1vx12Pa4CvwnNfJMMELW7sy4n8,33614
|
184
196
|
swift/obj/watchers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
185
197
|
swift/obj/watchers/dark_data.py,sha256=cuD7MqOFnlMnagbtAYl3n3N_rgBF4iR9NF3qFstZpCQ,8608
|
186
198
|
swift/proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
187
|
-
swift/proxy/server.py,sha256=
|
199
|
+
swift/proxy/server.py,sha256=lCBgEnHXIdBNkklqYNcLWj5YTWgi6_ZZnz_6sMaKY_g,36689
|
188
200
|
swift/proxy/controllers/__init__.py,sha256=w3H7qtpUavnczPLXJtiaDJISr2TAcihou9Q04ysRg3U,982
|
189
201
|
swift/proxy/controllers/account.py,sha256=0YTa8b0oOvQ2TJ3jVELnPZp1AuiMg0oceZy9wykUmkQ,8391
|
190
|
-
swift/proxy/controllers/base.py,sha256=
|
202
|
+
swift/proxy/controllers/base.py,sha256=JWpkm9MdhtF5Z6VmVp-XCbRpUTTsx1SU6-OQRWWEC5I,103339
|
191
203
|
swift/proxy/controllers/container.py,sha256=_JXDujs-AgX3eui327WD3vP7jcsKQCEcyyKdiye8rZU,37114
|
192
204
|
swift/proxy/controllers/info.py,sha256=QSvBwBJjwO3QIktINMCjcYgBi-QAi3wHWKmyf4AtQz8,3859
|
193
|
-
swift/proxy/controllers/obj.py,sha256=
|
194
|
-
swift-2.
|
195
|
-
swift-2.
|
196
|
-
swift-2.
|
197
|
-
swift-2.
|
198
|
-
swift-2.
|
199
|
-
swift-2.
|
200
|
-
swift-2.
|
201
|
-
swift-2.
|
202
|
-
swift-2.33.0.data/scripts/swift-container-info,sha256=-QYEVFBxzMltv8LNbuPIly9Syxcwe8r79BCSxJPlGg8,2101
|
203
|
-
swift-2.33.0.data/scripts/swift-container-reconciler,sha256=OkLmgJWhXgyJAyjfMwyXC5YV6hJtLCSFTJCZ8GpSgJE,838
|
204
|
-
swift-2.33.0.data/scripts/swift-container-replicator,sha256=mpTaU5JGCPmP8es4ImDchJcQyjGj1C9YpeyQOg6CxWE,1430
|
205
|
-
swift-2.33.0.data/scripts/swift-container-server,sha256=iJAbVpY3UG85va-4hyLdWwkBGnTeeSS68l__4P-1cQA,849
|
206
|
-
swift-2.33.0.data/scripts/swift-container-sharder,sha256=983bTHxlrcum_ABazWb88yKoBy7Opyy5p9tbIeyk_Gk,1693
|
207
|
-
swift-2.33.0.data/scripts/swift-container-sync,sha256=CstcpsvwRxfKoIlnSRN5JR9DuyWtVFKDTWQoHAhyC4g,869
|
208
|
-
swift-2.33.0.data/scripts/swift-container-updater,sha256=9V8fkM0jikjtAXSm-6Tvx-veJxGXCQyC1W1BMCelNew,878
|
209
|
-
swift-2.33.0.data/scripts/swift-dispersion-populate,sha256=ZC4Z4W4NjmQoQu3L76lJsuOppfy1OBBcr4RIVd3vNGY,11409
|
210
|
-
swift-2.33.0.data/scripts/swift-dispersion-report,sha256=aY4GzuRqTKERW0hm0ot6VYDk139lU1VDP30cjjlo-eA,726
|
211
|
-
swift-2.33.0.data/scripts/swift-drive-audit,sha256=-VqME4BTMs3Trdq6jqfB8M23ChGD9nlWG2rLx1QRxe0,10383
|
212
|
-
swift-2.33.0.data/scripts/swift-form-signature,sha256=2FG-zmTeF0F1xX15_VtWdk4_qeJxutk3S5KdoVk2rF0,681
|
213
|
-
swift-2.33.0.data/scripts/swift-get-nodes,sha256=tKZdixw9GkNWS7GmFMtaqM_RgI_sgikwDbPmeYc12fQ,2817
|
214
|
-
swift-2.33.0.data/scripts/swift-init,sha256=q5NOmFOTWJ34g5L6LwzSXzbGCjt_y3az8iz7wQ1f1rA,5097
|
215
|
-
swift-2.33.0.data/scripts/swift-object-auditor,sha256=wS5U9bhxE28CO72tV5dQKmTaaklyCuAHK_ealswjiXs,1212
|
216
|
-
swift-2.33.0.data/scripts/swift-object-expirer,sha256=8SWD9EU28aEdrDm6qxIGmaH7ACkdn-HX1e3_Lr7vNcs,1494
|
217
|
-
swift-2.33.0.data/scripts/swift-object-info,sha256=3oggJ3ZF531W7LM5CKYR1QEpK1rW2Cdt_3o1zicz1wk,1986
|
218
|
-
swift-2.33.0.data/scripts/swift-object-reconstructor,sha256=dnm1p2jHrES8-6lLNGAEuw0wvrqWiS74mqgLll7LLxI,1431
|
219
|
-
swift-2.33.0.data/scripts/swift-object-relinker,sha256=7_srgcnBhvaPgmifZeRb9IreGR0KeQWxkHeWw1NvY-w,668
|
220
|
-
swift-2.33.0.data/scripts/swift-object-replicator,sha256=aLlEMBR6RVOw8UFm4tqtBZNPntrYxgQHbxjhxMQZVsg,1644
|
221
|
-
swift-2.33.0.data/scripts/swift-object-server,sha256=T9QaeHkKMtTsXpZOCrC_Pj8RE2FQR3foYksjV6vf5tg,970
|
222
|
-
swift-2.33.0.data/scripts/swift-object-updater,sha256=bwG2KI9cGCDPKYzpnfIYHT6x4y1pCJ4dgqUhVZmnxIQ,866
|
223
|
-
swift-2.33.0.data/scripts/swift-oldies,sha256=Wovqw-JpSPp26Bhj_mC42pEzNabNx7H_HGhtyqLtN3s,3346
|
224
|
-
swift-2.33.0.data/scripts/swift-orphans,sha256=LasdlgiZHGpC7U20gHVl49mBDA2C2zj-_llCGKepLJk,5005
|
225
|
-
swift-2.33.0.data/scripts/swift-proxy-server,sha256=xoLrYohQri2cZwOsHB70xHMhLPyspdiTuse0-MdYFOk,845
|
226
|
-
swift-2.33.0.data/scripts/swift-recon,sha256=08VMHgSFgI9w-IND7PjFvyyVwGTJiVAjDEjrQjSMBow,725
|
227
|
-
swift-2.33.0.data/scripts/swift-recon-cron,sha256=eRxwdzPgiPVNDCM1FJHsHKHpE1bvr5tlLpp4KyIZTHs,683
|
228
|
-
swift-2.33.0.data/scripts/swift-reconciler-enqueue,sha256=MUj9Zo_sgBsHxG-CJ675FiJn0duMa5EJfKZAoiO6mpM,2547
|
229
|
-
swift-2.33.0.data/scripts/swift-ring-builder,sha256=T4fbV9Rf1Sa6eZVnrUNQxo_v9pOsXlKtP5CeI-BV4m8,1093
|
230
|
-
swift-2.33.0.data/scripts/swift-ring-builder-analyzer,sha256=184GLK94EO7EQhO3Rc8G61sPttJVNOqvMZoD_R83bMM,724
|
231
|
-
swift-2.33.0.data/scripts/swift-ring-composer,sha256=AnR7DIcCZ-cgLpgyCiRaDgL1BZaRWJUPhtQ03VhkDKI,700
|
232
|
-
swift-2.33.0.dist-info/AUTHORS,sha256=AjgGGBjZaHxBqWTdZi_VA8o3VzljbEcQoE3nYXTaEcY,18000
|
233
|
-
swift-2.33.0.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
234
|
-
swift-2.33.0.dist-info/METADATA,sha256=Ivj_hxsMZG_29bhUekndf7n2UgsOkg9Z2Q5wxUjSyiU,8733
|
235
|
-
swift-2.33.0.dist-info/WHEEL,sha256=kGT74LWyRUZrL4VgLh6_g12IeVl_9u9ZVhadrgXZUEY,110
|
236
|
-
swift-2.33.0.dist-info/entry_points.txt,sha256=A1OzMApwA2YDbtBIA_5P0GC9gw1OhagCl9rKLAS33Ug,3010
|
237
|
-
swift-2.33.0.dist-info/pbr.json,sha256=qre0z6JVuGyWKCdznd8ZnEAPtJsnuPVDc0ve4-xB8CI,48
|
238
|
-
swift-2.33.0.dist-info/top_level.txt,sha256=nVzNOToyzq0MM7JtrpalfOaPV9UIfm_lXhHX0duhVps,6
|
239
|
-
swift-2.33.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,7 +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
|
4
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
|
5
43
|
|
6
44
|
[paste.app_factory]
|
7
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)
|
@@ -1,52 +0,0 @@
|
|
1
|
-
#!python
|
2
|
-
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
3
|
-
# use this file except in compliance with the License. You may obtain a copy
|
4
|
-
# of the License at
|
5
|
-
#
|
6
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
7
|
-
#
|
8
|
-
# Unless required by applicable law or agreed to in writing, software
|
9
|
-
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
10
|
-
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
11
|
-
# License for the specific language governing permissions and limitations
|
12
|
-
# under the License.
|
13
|
-
|
14
|
-
import sqlite3
|
15
|
-
import sys
|
16
|
-
from optparse import OptionParser
|
17
|
-
|
18
|
-
from swift.cli.info import print_info, InfoSystemExit
|
19
|
-
from swift.common.exceptions import LockTimeout
|
20
|
-
|
21
|
-
|
22
|
-
def run_print_info(args, opts):
|
23
|
-
try:
|
24
|
-
print_info('account', *args, **opts)
|
25
|
-
except InfoSystemExit:
|
26
|
-
sys.exit(1)
|
27
|
-
except (sqlite3.OperationalError, LockTimeout) as e:
|
28
|
-
if not opts.get('stale_reads_ok'):
|
29
|
-
opts['stale_reads_ok'] = True
|
30
|
-
print('Warning: Possibly Stale Data')
|
31
|
-
run_print_info(args, opts)
|
32
|
-
sys.exit(2)
|
33
|
-
else:
|
34
|
-
print('Account info failed: %s' % e)
|
35
|
-
sys.exit(1)
|
36
|
-
|
37
|
-
|
38
|
-
if __name__ == '__main__':
|
39
|
-
parser = OptionParser('%prog [options] ACCOUNT_DB_FILE')
|
40
|
-
parser.add_option(
|
41
|
-
'-d', '--swift-dir', default='/etc/swift',
|
42
|
-
help="Pass location of swift directory")
|
43
|
-
parser.add_option(
|
44
|
-
'--drop-prefixes', default=False, action="store_true",
|
45
|
-
help="When outputting metadata, drop the per-section common prefixes")
|
46
|
-
|
47
|
-
options, args = parser.parse_args()
|
48
|
-
|
49
|
-
if len(args) != 1:
|
50
|
-
sys.exit(parser.print_help())
|
51
|
-
|
52
|
-
run_print_info(args, vars(options))
|
@@ -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.reaper import AccountReaper
|
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(AccountReaper, conf_file, **options)
|
@@ -1,34 +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
|
-
import optparse
|
18
|
-
|
19
|
-
from swift.account.replicator import AccountReplicator
|
20
|
-
from swift.common.utils import parse_options
|
21
|
-
from swift.common.daemon import run_daemon
|
22
|
-
|
23
|
-
if __name__ == '__main__':
|
24
|
-
parser = optparse.OptionParser("%prog CONFIG [options]")
|
25
|
-
parser.add_option('-d', '--devices',
|
26
|
-
help=('Replicate only given devices. '
|
27
|
-
'Comma-separated list. '
|
28
|
-
'Only has effect if --once is used.'))
|
29
|
-
parser.add_option('-p', '--partitions',
|
30
|
-
help=('Replicate only given partitions. '
|
31
|
-
'Comma-separated list. '
|
32
|
-
'Only has effect if --once is used.'))
|
33
|
-
conf_file, options = parse_options(parser=parser, once=True)
|
34
|
-
run_daemon(AccountReplicator, conf_file, **options)
|