swift 2.33.0__py2.py3-none-any.whl → 2.33.1__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/common/middleware/listing_formats.py +26 -38
- swift/common/middleware/x_profile/html_viewer.py +1 -1
- swift/common/middleware/xprofile.py +5 -0
- {swift-2.33.0.dist-info → swift-2.33.1.dist-info}/METADATA +31 -33
- {swift-2.33.0.dist-info → swift-2.33.1.dist-info}/RECORD +49 -49
- {swift-2.33.0.dist-info → swift-2.33.1.dist-info}/WHEEL +1 -1
- {swift-2.33.0.dist-info → swift-2.33.1.dist-info}/entry_points.txt +0 -1
- swift-2.33.1.dist-info/pbr.json +1 -0
- swift-2.33.0.dist-info/pbr.json +0 -1
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-account-audit +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-account-auditor +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-account-info +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-account-reaper +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-account-replicator +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-account-server +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-config +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-container-auditor +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-container-info +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-container-reconciler +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-container-replicator +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-container-server +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-container-sharder +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-container-sync +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-container-updater +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-dispersion-populate +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-dispersion-report +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-drive-audit +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-form-signature +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-get-nodes +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-init +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-object-auditor +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-object-expirer +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-object-info +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-object-reconstructor +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-object-relinker +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-object-replicator +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-object-server +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-object-updater +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-oldies +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-orphans +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-proxy-server +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-recon +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-recon-cron +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-reconciler-enqueue +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-ring-builder +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-ring-builder-analyzer +0 -0
- {swift-2.33.0.data → swift-2.33.1.data}/scripts/swift-ring-composer +0 -0
- {swift-2.33.0.dist-info → swift-2.33.1.dist-info}/AUTHORS +0 -0
- {swift-2.33.0.dist-info → swift-2.33.1.dist-info}/LICENSE +0 -0
- {swift-2.33.0.dist-info → swift-2.33.1.dist-info}/top_level.txt +0 -0
@@ -18,6 +18,7 @@ import six
|
|
18
18
|
from xml.etree.cElementTree import Element, SubElement, tostring
|
19
19
|
|
20
20
|
from swift.common.constraints import valid_api_version
|
21
|
+
from swift.common.header_key_dict import HeaderKeyDict
|
21
22
|
from swift.common.http import HTTP_NO_CONTENT
|
22
23
|
from swift.common.request_helpers import get_param
|
23
24
|
from swift.common.swob import HTTPException, HTTPNotAcceptable, Request, \
|
@@ -178,52 +179,39 @@ class ListingFilter(object):
|
|
178
179
|
start_response(status, headers)
|
179
180
|
return resp_iter
|
180
181
|
|
181
|
-
header_to_index = {}
|
182
|
-
resp_content_type = resp_length = None
|
183
|
-
for i, (header, value) in enumerate(headers):
|
184
|
-
header = header.lower()
|
185
|
-
if header == 'content-type':
|
186
|
-
header_to_index[header] = i
|
187
|
-
resp_content_type = value.partition(';')[0]
|
188
|
-
elif header == 'content-length':
|
189
|
-
header_to_index[header] = i
|
190
|
-
resp_length = int(value)
|
191
|
-
elif header == 'vary':
|
192
|
-
header_to_index[header] = i
|
193
|
-
|
194
182
|
if not status.startswith(('200 ', '204 ')):
|
195
183
|
start_response(status, headers)
|
196
184
|
return resp_iter
|
197
185
|
|
186
|
+
headers_dict = HeaderKeyDict(headers)
|
187
|
+
resp_content_type = headers_dict.get(
|
188
|
+
'content-type', '').partition(';')[0]
|
189
|
+
resp_length = headers_dict.get('content-length')
|
190
|
+
|
198
191
|
if can_vary:
|
199
|
-
if 'vary' in
|
200
|
-
value =
|
192
|
+
if 'vary' in headers_dict:
|
193
|
+
value = headers_dict['vary']
|
201
194
|
if 'accept' not in list_from_csv(value.lower()):
|
202
|
-
|
203
|
-
'Vary', value + ', Accept')
|
195
|
+
headers_dict['vary'] = value + ', Accept'
|
204
196
|
else:
|
205
|
-
|
197
|
+
headers_dict['vary'] = 'Accept'
|
206
198
|
|
207
199
|
if resp_content_type != 'application/json':
|
208
|
-
start_response(status,
|
200
|
+
start_response(status, list(headers_dict.items()))
|
209
201
|
return resp_iter
|
210
202
|
|
211
|
-
if
|
212
|
-
|
213
|
-
|
203
|
+
if req.method == 'HEAD':
|
204
|
+
headers_dict['content-type'] = out_content_type + '; charset=utf-8'
|
205
|
+
# proxy logging (and maybe other mw?) seem to be good about
|
206
|
+
# sticking this on HEAD/204 but we do it here to be responsible
|
207
|
+
# and explicit
|
208
|
+
headers_dict['content-length'] = 0
|
209
|
+
start_response(status, list(headers_dict.items()))
|
214
210
|
return resp_iter
|
215
211
|
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
else:
|
220
|
-
headers[header_to_index[header]] = (
|
221
|
-
headers[header_to_index[header]][0], str(value))
|
222
|
-
|
223
|
-
if req.method == 'HEAD':
|
224
|
-
set_header('content-type', out_content_type + '; charset=utf-8')
|
225
|
-
set_header('content-length', None) # don't know, can't determine
|
226
|
-
start_response(status, headers)
|
212
|
+
if resp_length is None or \
|
213
|
+
int(resp_length) > MAX_CONTAINER_LISTING_CONTENT_LENGTH:
|
214
|
+
start_response(status, list(headers_dict.items()))
|
227
215
|
return resp_iter
|
228
216
|
|
229
217
|
body = b''.join(resp_iter)
|
@@ -237,7 +225,7 @@ class ListingFilter(object):
|
|
237
225
|
except ValueError:
|
238
226
|
# Static web listing that's returning invalid JSON?
|
239
227
|
# Just pass it straight through; that's about all we *can* do.
|
240
|
-
start_response(status,
|
228
|
+
start_response(status, list(headers_dict.items()))
|
241
229
|
return [body]
|
242
230
|
|
243
231
|
if not req.allow_reserved_names:
|
@@ -257,16 +245,16 @@ class ListingFilter(object):
|
|
257
245
|
body = json.dumps(listing).encode('ascii')
|
258
246
|
except KeyError:
|
259
247
|
# listing was in a bad format -- funky static web listing??
|
260
|
-
start_response(status,
|
248
|
+
start_response(status, list(headers_dict.items()))
|
261
249
|
return [body]
|
262
250
|
|
263
251
|
if not body:
|
264
252
|
status = '%s %s' % (HTTP_NO_CONTENT,
|
265
253
|
RESPONSE_REASONS[HTTP_NO_CONTENT][0])
|
266
254
|
|
267
|
-
|
268
|
-
|
269
|
-
start_response(status,
|
255
|
+
headers_dict['content-type'] = out_content_type + '; charset=utf-8'
|
256
|
+
headers_dict['content-length'] = len(body)
|
257
|
+
start_response(status, list(headers_dict.items()))
|
270
258
|
return [body]
|
271
259
|
|
272
260
|
|
@@ -246,7 +246,7 @@ class HTMLViewer(object):
|
|
246
246
|
if multiple:
|
247
247
|
return value
|
248
248
|
if isinstance(value, list):
|
249
|
-
return
|
249
|
+
return int(value[0]) if isinstance(default, int) else value[0]
|
250
250
|
else:
|
251
251
|
return value
|
252
252
|
|
@@ -16,6 +16,11 @@
|
|
16
16
|
"""
|
17
17
|
Profiling middleware for Swift Servers.
|
18
18
|
|
19
|
+
.. note::
|
20
|
+
This middleware is intended for development and testing environments only,
|
21
|
+
not production. No authentication is expected or required for the web UI,
|
22
|
+
and profiling may incur noticeable performance penalties.
|
23
|
+
|
19
24
|
The current implementation is based on eventlet aware profiler.(For the
|
20
25
|
future, more profilers could be added in to collect more data for analysis.)
|
21
26
|
Profiling all incoming requests and accumulating cpu timing statistics
|
@@ -1,16 +1,14 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: swift
|
3
|
-
Version: 2.33.
|
3
|
+
Version: 2.33.1
|
4
4
|
Summary: OpenStack Object Storage
|
5
5
|
Home-page: https://docs.openstack.org/swift/latest/
|
6
6
|
Author: OpenStack
|
7
7
|
Author-email: openstack-discuss@lists.openstack.org
|
8
|
-
License: UNKNOWN
|
9
8
|
Project-URL: Documentation, https://docs.openstack.org/swift/latest/
|
10
9
|
Project-URL: Bug Tracker, https://bugs.launchpad.net/swift
|
11
10
|
Project-URL: Source Code, https://opendev.org/openstack/swift/
|
12
11
|
Project-URL: Release Notes, https://opendev.org/openstack/swift/src/branch/master/CHANGELOG
|
13
|
-
Platform: UNKNOWN
|
14
12
|
Classifier: Development Status :: 5 - Production/Stable
|
15
13
|
Classifier: Environment :: OpenStack
|
16
14
|
Classifier: Intended Audience :: Information Technology
|
@@ -27,38 +25,40 @@ Classifier: Programming Language :: Python :: 3.8
|
|
27
25
|
Classifier: Programming Language :: Python :: 3.9
|
28
26
|
Classifier: Programming Language :: Python :: 3.10
|
29
27
|
Classifier: Programming Language :: Python :: 3.11
|
30
|
-
|
31
|
-
|
32
|
-
Requires-Dist:
|
33
|
-
Requires-Dist:
|
34
|
-
Requires-Dist:
|
35
|
-
Requires-Dist: lxml
|
36
|
-
Requires-Dist: requests
|
37
|
-
Requires-Dist: six
|
38
|
-
Requires-Dist:
|
28
|
+
License-File: LICENSE
|
29
|
+
License-File: AUTHORS
|
30
|
+
Requires-Dist: eventlet !=0.34.3,>=0.25.0
|
31
|
+
Requires-Dist: greenlet >=0.3.2
|
32
|
+
Requires-Dist: PasteDeploy >=2.0.0
|
33
|
+
Requires-Dist: lxml >=3.4.1
|
34
|
+
Requires-Dist: requests >=2.14.2
|
35
|
+
Requires-Dist: six >=1.10.0
|
36
|
+
Requires-Dist: PyECLib >=1.3.1
|
37
|
+
Requires-Dist: cryptography >=2.0.2
|
38
|
+
Requires-Dist: xattr >=0.4 ; (sys_platform!='win32')
|
39
39
|
Provides-Extra: keystone
|
40
|
-
Requires-Dist: keystonemiddleware
|
40
|
+
Requires-Dist: keystonemiddleware >=4.17.0 ; extra == 'keystone'
|
41
41
|
Provides-Extra: kmip_keymaster
|
42
|
-
Requires-Dist: pykmip
|
42
|
+
Requires-Dist: pykmip >=0.7.0 ; extra == 'kmip_keymaster'
|
43
43
|
Provides-Extra: kms_keymaster
|
44
|
-
Requires-Dist:
|
45
|
-
Requires-Dist:
|
44
|
+
Requires-Dist: oslo.config !=4.3.0,!=4.4.0,>=4.0.0 ; extra == 'kms_keymaster'
|
45
|
+
Requires-Dist: castellan >=0.13.0 ; extra == 'kms_keymaster'
|
46
46
|
Provides-Extra: test
|
47
|
-
Requires-Dist:
|
48
|
-
Requires-Dist:
|
49
|
-
Requires-Dist:
|
50
|
-
Requires-Dist:
|
51
|
-
Requires-Dist:
|
52
|
-
Requires-Dist:
|
53
|
-
Requires-Dist:
|
54
|
-
Requires-Dist:
|
55
|
-
Requires-Dist:
|
56
|
-
Requires-Dist:
|
57
|
-
Requires-Dist:
|
58
|
-
Requires-Dist:
|
59
|
-
Requires-Dist:
|
60
|
-
Requires-Dist:
|
61
|
-
Requires-Dist:
|
47
|
+
Requires-Dist: hacking <6.2.0,>=2.0 ; extra == 'test'
|
48
|
+
Requires-Dist: coverage >=5.0.4 ; extra == 'test'
|
49
|
+
Requires-Dist: pytest >=4.6.11 ; extra == 'test'
|
50
|
+
Requires-Dist: pytest-cov >=2.12.1 ; extra == 'test'
|
51
|
+
Requires-Dist: stestr >=2.0.0 ; extra == 'test'
|
52
|
+
Requires-Dist: mock >=2.0 ; extra == 'test'
|
53
|
+
Requires-Dist: python-swiftclient >=3.2.0 ; extra == 'test'
|
54
|
+
Requires-Dist: python-keystoneclient !=2.1.0,>=2.0.0 ; extra == 'test'
|
55
|
+
Requires-Dist: boto >=2.32.1 ; extra == 'test'
|
56
|
+
Requires-Dist: boto3 >=1.9 ; extra == 'test'
|
57
|
+
Requires-Dist: botocore >=1.12 ; extra == 'test'
|
58
|
+
Requires-Dist: requests-mock >=1.2.0 ; extra == 'test'
|
59
|
+
Requires-Dist: keystonemiddleware >=4.17.0 ; extra == 'test'
|
60
|
+
Requires-Dist: bandit >=1.1.0 ; extra == 'test'
|
61
|
+
Requires-Dist: docutils >=0.11 ; extra == 'test'
|
62
62
|
|
63
63
|
===============
|
64
64
|
OpenStack Swift
|
@@ -221,5 +221,3 @@ Thanks,
|
|
221
221
|
|
222
222
|
The Swift Development Team
|
223
223
|
|
224
|
-
|
225
|
-
|
@@ -66,7 +66,7 @@ swift/common/middleware/gatekeeper.py,sha256=OlF-Qk1OZ-XKE3tCoKv0TNn-wOnWLHwvqeF
|
|
66
66
|
swift/common/middleware/healthcheck.py,sha256=3F4UgutBgQpTYfe_Oh2Kh8cQfUbdT0_k4BrmZnjK97M,2075
|
67
67
|
swift/common/middleware/keystoneauth.py,sha256=JUkP2wI8sq3tL6iWYMK_2S9CQvUtnBbB6Jw8J1LOOzI,26901
|
68
68
|
swift/common/middleware/list_endpoints.py,sha256=LkBJhLoREsw7Sy3O0HEOEXO8k2N4sx32hEvILsJzUow,10060
|
69
|
-
swift/common/middleware/listing_formats.py,sha256=
|
69
|
+
swift/common/middleware/listing_formats.py,sha256=mtxvTW1sRjO3Z6tI-7OdcAlT4DtRjh-U_M7r-HqkfsI,10285
|
70
70
|
swift/common/middleware/memcache.py,sha256=YENYsIaZZ1wM1IWfmlJzVrAfF0Eb0HF8YAwuj1HupoY,1308
|
71
71
|
swift/common/middleware/name_check.py,sha256=K3PzYs7lW1fe7anYFdcC6ijMChcsvNbtw4Sio8Dec_8,5366
|
72
72
|
swift/common/middleware/proxy_logging.py,sha256=RGiPLfrbdN5p81nw0PiyO8utJ2pgk54Q6Y-tSzCFz8A,22638
|
@@ -78,7 +78,7 @@ swift/common/middleware/staticweb.py,sha256=oNxI2t9un_osgtDF2Q-hinsGdjHHA7W1sza3
|
|
78
78
|
swift/common/middleware/symlink.py,sha256=qzKpxDg1400uYCVs2ia0f-cz2Ty--sP70qALymCsWfw,35236
|
79
79
|
swift/common/middleware/tempauth.py,sha256=7c1nZ2X2t2F7P4E4yH9XIvC5i2Pao0DHPvXKYAtVQ-E,38318
|
80
80
|
swift/common/middleware/tempurl.py,sha256=Rl1dZlM2tOb8V4-9MVnnh3AiL7J8tkkPErJgQB401jg,36728
|
81
|
-
swift/common/middleware/xprofile.py,sha256=
|
81
|
+
swift/common/middleware/xprofile.py,sha256=hO5WCHOKhP-ErgWF43cbEgkC83Y0dVeqoJ2w8B0EN6E,10148
|
82
82
|
swift/common/middleware/crypto/__init__.py,sha256=ZI-Tnqg3AMVgDzAhkWFtAlKFJqXGAzYMzSquwK2OnUk,1498
|
83
83
|
swift/common/middleware/crypto/crypto_utils.py,sha256=VQQuWFFrv0dL7XcBMiKLu3mXSL07hcwJLY8j9FlCLi4,11446
|
84
84
|
swift/common/middleware/crypto/decrypter.py,sha256=D8fPuxcZFtAL5GT82n9UcuLai-k9LuW9o4sAbjXtoCg,20452
|
@@ -136,7 +136,7 @@ swift/common/middleware/versioned_writes/legacy.py,sha256=OLXfy7h_P-zyBDbxRjhrNe
|
|
136
136
|
swift/common/middleware/versioned_writes/object_versioning.py,sha256=HAxehk0_f7LiLeHEeE3IScxGGfFMNaeEr8weQILNVvc,66014
|
137
137
|
swift/common/middleware/x_profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
138
138
|
swift/common/middleware/x_profile/exceptions.py,sha256=SqY5ctBPu9_PINZGWQeXt8_OfDFg_Mk8zi3vl-hfW7M,1057
|
139
|
-
swift/common/middleware/x_profile/html_viewer.py,sha256=
|
139
|
+
swift/common/middleware/x_profile/html_viewer.py,sha256=M7ddSZCes4xnzN1aW7Bft5vNbz34eTNznPwZgNrJwHo,21404
|
140
140
|
swift/common/middleware/x_profile/profile_model.py,sha256=E7YoHPvlbSawaWzlSRmicsJZK0Nh7lA1RJpXb9Dw0r8,10237
|
141
141
|
swift/common/ring/__init__.py,sha256=WgGFseZj8r2UtBCBcZiCgzbUoWCGv4ND1MCEv5IW7aA,758
|
142
142
|
swift/common/ring/builder.py,sha256=N61Pcx2vX7JAnEdXR3HR12vd9iC4htOImo-rBKuswf0,81478
|
@@ -191,49 +191,49 @@ swift/proxy/controllers/base.py,sha256=8fzQQUWP0od6VLHGsIbo3OoNcCHTmO6wBItx_EBMT
|
|
191
191
|
swift/proxy/controllers/container.py,sha256=_JXDujs-AgX3eui327WD3vP7jcsKQCEcyyKdiye8rZU,37114
|
192
192
|
swift/proxy/controllers/info.py,sha256=QSvBwBJjwO3QIktINMCjcYgBi-QAi3wHWKmyf4AtQz8,3859
|
193
193
|
swift/proxy/controllers/obj.py,sha256=IUTXa5-vWNuh6uUwB6HfdbtyhhMX3ysHSA4HrILw64g,149318
|
194
|
-
swift-2.33.
|
195
|
-
swift-2.33.
|
196
|
-
swift-2.33.
|
197
|
-
swift-2.33.
|
198
|
-
swift-2.33.
|
199
|
-
swift-2.33.
|
200
|
-
swift-2.33.
|
201
|
-
swift-2.33.
|
202
|
-
swift-2.33.
|
203
|
-
swift-2.33.
|
204
|
-
swift-2.33.
|
205
|
-
swift-2.33.
|
206
|
-
swift-2.33.
|
207
|
-
swift-2.33.
|
208
|
-
swift-2.33.
|
209
|
-
swift-2.33.
|
210
|
-
swift-2.33.
|
211
|
-
swift-2.33.
|
212
|
-
swift-2.33.
|
213
|
-
swift-2.33.
|
214
|
-
swift-2.33.
|
215
|
-
swift-2.33.
|
216
|
-
swift-2.33.
|
217
|
-
swift-2.33.
|
218
|
-
swift-2.33.
|
219
|
-
swift-2.33.
|
220
|
-
swift-2.33.
|
221
|
-
swift-2.33.
|
222
|
-
swift-2.33.
|
223
|
-
swift-2.33.
|
224
|
-
swift-2.33.
|
225
|
-
swift-2.33.
|
226
|
-
swift-2.33.
|
227
|
-
swift-2.33.
|
228
|
-
swift-2.33.
|
229
|
-
swift-2.33.
|
230
|
-
swift-2.33.
|
231
|
-
swift-2.33.
|
232
|
-
swift-2.33.
|
233
|
-
swift-2.33.
|
234
|
-
swift-2.33.
|
235
|
-
swift-2.33.
|
236
|
-
swift-2.33.
|
237
|
-
swift-2.33.
|
238
|
-
swift-2.33.
|
239
|
-
swift-2.33.
|
194
|
+
swift-2.33.1.data/scripts/swift-account-audit,sha256=m6SBGlpb1pQG02fknJWSk69GkpxCtNuBeYfSKHRuBVM,16683
|
195
|
+
swift-2.33.1.data/scripts/swift-account-auditor,sha256=7Rv7iNLdx_AFPyDiCfBIlI2MyktnGUaRFCbclhs0aIw,872
|
196
|
+
swift-2.33.1.data/scripts/swift-account-info,sha256=fmwMDT6NL5L0sAiRKeBsdJWZ03A6IvJFiGMO3zNNDcY,1716
|
197
|
+
swift-2.33.1.data/scripts/swift-account-reaper,sha256=cShVUVEAYare4Y7_YnvQq_sk5TRa_P6IpJmIEDndhoI,869
|
198
|
+
swift-2.33.1.data/scripts/swift-account-replicator,sha256=3WfAFxjOhQtBKA_Kp8XHYjdlhc749MuiXLhDV0CwwvA,1424
|
199
|
+
swift-2.33.1.data/scripts/swift-account-server,sha256=msohuJQi0IhUcwcxKsce1Nzo0fe-EQgSqmPouVNE3E0,847
|
200
|
+
swift-2.33.1.data/scripts/swift-config,sha256=OFhAuKVjUcV3XH-GZ3ZyiqN0QR7iCkzoRYDoXPMYHkk,3081
|
201
|
+
swift-2.33.1.data/scripts/swift-container-auditor,sha256=_6w3v5m6--Ly1P8Hr5ymVVWcLzkcVJrXouTGjlM73yI,878
|
202
|
+
swift-2.33.1.data/scripts/swift-container-info,sha256=-QYEVFBxzMltv8LNbuPIly9Syxcwe8r79BCSxJPlGg8,2101
|
203
|
+
swift-2.33.1.data/scripts/swift-container-reconciler,sha256=OkLmgJWhXgyJAyjfMwyXC5YV6hJtLCSFTJCZ8GpSgJE,838
|
204
|
+
swift-2.33.1.data/scripts/swift-container-replicator,sha256=mpTaU5JGCPmP8es4ImDchJcQyjGj1C9YpeyQOg6CxWE,1430
|
205
|
+
swift-2.33.1.data/scripts/swift-container-server,sha256=iJAbVpY3UG85va-4hyLdWwkBGnTeeSS68l__4P-1cQA,849
|
206
|
+
swift-2.33.1.data/scripts/swift-container-sharder,sha256=983bTHxlrcum_ABazWb88yKoBy7Opyy5p9tbIeyk_Gk,1693
|
207
|
+
swift-2.33.1.data/scripts/swift-container-sync,sha256=CstcpsvwRxfKoIlnSRN5JR9DuyWtVFKDTWQoHAhyC4g,869
|
208
|
+
swift-2.33.1.data/scripts/swift-container-updater,sha256=9V8fkM0jikjtAXSm-6Tvx-veJxGXCQyC1W1BMCelNew,878
|
209
|
+
swift-2.33.1.data/scripts/swift-dispersion-populate,sha256=ZC4Z4W4NjmQoQu3L76lJsuOppfy1OBBcr4RIVd3vNGY,11409
|
210
|
+
swift-2.33.1.data/scripts/swift-dispersion-report,sha256=aY4GzuRqTKERW0hm0ot6VYDk139lU1VDP30cjjlo-eA,726
|
211
|
+
swift-2.33.1.data/scripts/swift-drive-audit,sha256=-VqME4BTMs3Trdq6jqfB8M23ChGD9nlWG2rLx1QRxe0,10383
|
212
|
+
swift-2.33.1.data/scripts/swift-form-signature,sha256=2FG-zmTeF0F1xX15_VtWdk4_qeJxutk3S5KdoVk2rF0,681
|
213
|
+
swift-2.33.1.data/scripts/swift-get-nodes,sha256=tKZdixw9GkNWS7GmFMtaqM_RgI_sgikwDbPmeYc12fQ,2817
|
214
|
+
swift-2.33.1.data/scripts/swift-init,sha256=q5NOmFOTWJ34g5L6LwzSXzbGCjt_y3az8iz7wQ1f1rA,5097
|
215
|
+
swift-2.33.1.data/scripts/swift-object-auditor,sha256=wS5U9bhxE28CO72tV5dQKmTaaklyCuAHK_ealswjiXs,1212
|
216
|
+
swift-2.33.1.data/scripts/swift-object-expirer,sha256=8SWD9EU28aEdrDm6qxIGmaH7ACkdn-HX1e3_Lr7vNcs,1494
|
217
|
+
swift-2.33.1.data/scripts/swift-object-info,sha256=3oggJ3ZF531W7LM5CKYR1QEpK1rW2Cdt_3o1zicz1wk,1986
|
218
|
+
swift-2.33.1.data/scripts/swift-object-reconstructor,sha256=dnm1p2jHrES8-6lLNGAEuw0wvrqWiS74mqgLll7LLxI,1431
|
219
|
+
swift-2.33.1.data/scripts/swift-object-relinker,sha256=7_srgcnBhvaPgmifZeRb9IreGR0KeQWxkHeWw1NvY-w,668
|
220
|
+
swift-2.33.1.data/scripts/swift-object-replicator,sha256=aLlEMBR6RVOw8UFm4tqtBZNPntrYxgQHbxjhxMQZVsg,1644
|
221
|
+
swift-2.33.1.data/scripts/swift-object-server,sha256=T9QaeHkKMtTsXpZOCrC_Pj8RE2FQR3foYksjV6vf5tg,970
|
222
|
+
swift-2.33.1.data/scripts/swift-object-updater,sha256=bwG2KI9cGCDPKYzpnfIYHT6x4y1pCJ4dgqUhVZmnxIQ,866
|
223
|
+
swift-2.33.1.data/scripts/swift-oldies,sha256=Wovqw-JpSPp26Bhj_mC42pEzNabNx7H_HGhtyqLtN3s,3346
|
224
|
+
swift-2.33.1.data/scripts/swift-orphans,sha256=LasdlgiZHGpC7U20gHVl49mBDA2C2zj-_llCGKepLJk,5005
|
225
|
+
swift-2.33.1.data/scripts/swift-proxy-server,sha256=xoLrYohQri2cZwOsHB70xHMhLPyspdiTuse0-MdYFOk,845
|
226
|
+
swift-2.33.1.data/scripts/swift-recon,sha256=08VMHgSFgI9w-IND7PjFvyyVwGTJiVAjDEjrQjSMBow,725
|
227
|
+
swift-2.33.1.data/scripts/swift-recon-cron,sha256=eRxwdzPgiPVNDCM1FJHsHKHpE1bvr5tlLpp4KyIZTHs,683
|
228
|
+
swift-2.33.1.data/scripts/swift-reconciler-enqueue,sha256=MUj9Zo_sgBsHxG-CJ675FiJn0duMa5EJfKZAoiO6mpM,2547
|
229
|
+
swift-2.33.1.data/scripts/swift-ring-builder,sha256=T4fbV9Rf1Sa6eZVnrUNQxo_v9pOsXlKtP5CeI-BV4m8,1093
|
230
|
+
swift-2.33.1.data/scripts/swift-ring-builder-analyzer,sha256=184GLK94EO7EQhO3Rc8G61sPttJVNOqvMZoD_R83bMM,724
|
231
|
+
swift-2.33.1.data/scripts/swift-ring-composer,sha256=AnR7DIcCZ-cgLpgyCiRaDgL1BZaRWJUPhtQ03VhkDKI,700
|
232
|
+
swift-2.33.1.dist-info/AUTHORS,sha256=AjgGGBjZaHxBqWTdZi_VA8o3VzljbEcQoE3nYXTaEcY,18000
|
233
|
+
swift-2.33.1.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
234
|
+
swift-2.33.1.dist-info/METADATA,sha256=ljLEs_oXyFH4kgAUjeX_qr7DKl8hm69ylZrXZQxncF0,8684
|
235
|
+
swift-2.33.1.dist-info/WHEEL,sha256=Ll72iyqtt6Rbxp-Q7FSafYA1LeRv98X15xcZWRsFEmY,109
|
236
|
+
swift-2.33.1.dist-info/entry_points.txt,sha256=2l9n2rZxyzvGz3Br_2-GYasMQesoeAYiOiEczr3aaSs,3009
|
237
|
+
swift-2.33.1.dist-info/pbr.json,sha256=IGKwOw-9KLBr14zfVz7AdrfwgSsuFugfD3TPulk5S04,48
|
238
|
+
swift-2.33.1.dist-info/top_level.txt,sha256=nVzNOToyzq0MM7JtrpalfOaPV9UIfm_lXhHX0duhVps,6
|
239
|
+
swift-2.33.1.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
{"git_version": "d6a5b7978", "is_release": true}
|
swift-2.33.0.dist-info/pbr.json
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"git_version": "5f95b6b26", "is_release": true}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|