rucio 37.1.0.post1__py3-none-any.whl → 37.3.0__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.
Potentially problematic release.
This version of rucio might be problematic. Click here for more details.
- rucio/common/plugins.py +1 -1
- rucio/common/utils.py +17 -10
- rucio/core/did.py +32 -4
- rucio/core/did_meta_plugins/did_column_meta.py +1 -1
- rucio/core/replica.py +1 -1
- rucio/db/sqla/util.py +1 -1
- rucio/gateway/authentication.py +58 -88
- rucio/gateway/config.py +63 -75
- rucio/gateway/credential.py +11 -17
- rucio/gateway/did.py +245 -329
- rucio/gateway/dirac.py +33 -34
- rucio/gateway/exporter.py +27 -30
- rucio/gateway/heartbeat.py +15 -19
- rucio/gateway/importer.py +12 -14
- rucio/gateway/lifetime_exception.py +16 -24
- rucio/gateway/lock.py +27 -40
- rucio/gateway/meta_conventions.py +19 -28
- rucio/gateway/quarantined_replica.py +24 -27
- rucio/gateway/replica.py +223 -226
- rucio/gateway/rse.py +191 -218
- rucio/gateway/rule.py +115 -146
- rucio/gateway/scope.py +18 -25
- rucio/gateway/trace.py +48 -0
- rucio/gateway/vo.py +32 -37
- rucio/vcsversion.py +3 -3
- rucio/web/rest/flaskapi/v1/accounts.py +2 -2
- rucio/web/rest/flaskapi/v1/auth.py +15 -0
- rucio/web/rest/flaskapi/v1/common.py +20 -0
- rucio/web/rest/flaskapi/v1/config.py +7 -7
- rucio/web/rest/flaskapi/v1/credentials.py +20 -13
- rucio/web/rest/flaskapi/v1/dids.py +55 -55
- rucio/web/rest/flaskapi/v1/dirac.py +2 -2
- rucio/web/rest/flaskapi/v1/export.py +1 -1
- rucio/web/rest/flaskapi/v1/heartbeats.py +3 -3
- rucio/web/rest/flaskapi/v1/import.py +1 -1
- rucio/web/rest/flaskapi/v1/lifetime_exceptions.py +5 -5
- rucio/web/rest/flaskapi/v1/locks.py +4 -4
- rucio/web/rest/flaskapi/v1/main.py +17 -10
- rucio/web/rest/flaskapi/v1/meta_conventions.py +3 -3
- rucio/web/rest/flaskapi/v1/replicas.py +31 -30
- rucio/web/rest/flaskapi/v1/rses.py +37 -37
- rucio/web/rest/flaskapi/v1/rules.py +15 -15
- rucio/web/rest/flaskapi/v1/scopes.py +3 -3
- rucio/web/rest/flaskapi/v1/traces.py +75 -77
- rucio/web/rest/flaskapi/v1/vos.py +5 -7
- {rucio-37.1.0.post1.dist-info → rucio-37.3.0.dist-info}/METADATA +1 -2
- {rucio-37.1.0.post1.dist-info → rucio-37.3.0.dist-info}/RECORD +106 -105
- {rucio-37.1.0.post1.dist-info → rucio-37.3.0.dist-info}/WHEEL +1 -1
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/alembic.ini.template +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/alembic_offline.ini.template +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/globus-config.yml.template +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/ldap.cfg.template +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_denied_user.tmpl +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_ok_notification.tmpl +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/rse-accounts.cfg.template +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/rucio.cfg.atlas.client.template +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/rucio.cfg.template +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/rucio_multi_vo.cfg.template +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/requirements.server.txt +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/tools/bootstrap.py +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/tools/merge_rucio_configs.py +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/tools/reset_database.py +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-abacus-account +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-abacus-collection-replica +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-abacus-rse +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-admin +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-atropos +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-auditor +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-automatix +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-bb8 +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-cache-client +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-cache-consumer +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-conveyor-finisher +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-conveyor-poller +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-conveyor-preparer +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-conveyor-receiver +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-conveyor-stager +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-conveyor-submitter +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-conveyor-throttler +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-dark-reaper +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-dumper +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-follower +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-hermes +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-judge-cleaner +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-judge-evaluator +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-judge-injector +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-judge-repairer +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-kronos +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-minos +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-minos-temporary-expiration +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-necromancer +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-oauth-manager +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-reaper +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-replica-recoverer +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-rse-decommissioner +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-storage-consistency-actions +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-transmogrifier +0 -0
- {rucio-37.1.0.post1.data → rucio-37.3.0.data}/scripts/rucio-undertaker +0 -0
- {rucio-37.1.0.post1.dist-info → rucio-37.3.0.dist-info}/licenses/AUTHORS.rst +0 -0
- {rucio-37.1.0.post1.dist-info → rucio-37.3.0.dist-info}/licenses/LICENSE +0 -0
- {rucio-37.1.0.post1.dist-info → rucio-37.3.0.dist-info}/top_level.txt +0 -0
|
@@ -12,17 +12,14 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
+
from json.decoder import JSONDecodeError
|
|
16
|
+
from typing import TYPE_CHECKING
|
|
15
17
|
|
|
16
|
-
import
|
|
17
|
-
import json
|
|
18
|
-
import uuid
|
|
19
|
-
from typing import TYPE_CHECKING, Union
|
|
20
|
-
|
|
21
|
-
from flask import Blueprint, Flask, request
|
|
18
|
+
from flask import Blueprint, Flask, Response, request
|
|
22
19
|
from werkzeug.datastructures import Headers
|
|
23
20
|
|
|
24
|
-
from rucio.
|
|
25
|
-
from rucio.web.rest.flaskapi.v1.common import ErrorHandlingMethodView, response_headers
|
|
21
|
+
from rucio.gateway.trace import trace
|
|
22
|
+
from rucio.web.rest.flaskapi.v1.common import ErrorHandlingMethodView, generate_http_error_flask, response_headers
|
|
26
23
|
|
|
27
24
|
if TYPE_CHECKING:
|
|
28
25
|
from typing import Optional
|
|
@@ -32,36 +29,6 @@ if TYPE_CHECKING:
|
|
|
32
29
|
|
|
33
30
|
class Trace(ErrorHandlingMethodView):
|
|
34
31
|
|
|
35
|
-
def __handle_payload_item(self, payload: dict) -> None:
|
|
36
|
-
"""
|
|
37
|
-
Handles and processes a single trace payload item by adding various trace information.
|
|
38
|
-
|
|
39
|
-
Args:
|
|
40
|
-
payload (dict): The payload dictionary to be processed.
|
|
41
|
-
|
|
42
|
-
Modifies:
|
|
43
|
-
payload (dict): Adds the following keys to the payload:
|
|
44
|
-
- 'traceTimeentry': The current UTC timestamp.
|
|
45
|
-
- 'traceTimeentryUnix': The Unix timestamp with microsecond precision.
|
|
46
|
-
- 'traceIp': The client's IP address, either from 'X-Forwarded-For' header or remote address.
|
|
47
|
-
- 'traceId': A unique identifier for the trace, generated as a UUID without hyphens.
|
|
48
|
-
|
|
49
|
-
Calls:
|
|
50
|
-
trace(payload): A function to handle the processed payload.
|
|
51
|
-
"""
|
|
52
|
-
# generate entry timestamp
|
|
53
|
-
payload["traceTimeentry"] = datetime.datetime.now(datetime.timezone.utc)
|
|
54
|
-
payload["traceTimeentryUnix"] = payload["traceTimeentry"].timestamp()
|
|
55
|
-
|
|
56
|
-
# guess client IP
|
|
57
|
-
payload["traceIp"] = request.headers.get(
|
|
58
|
-
"X-Forwarded-For", default=request.remote_addr
|
|
59
|
-
)
|
|
60
|
-
|
|
61
|
-
# generate unique ID
|
|
62
|
-
payload["traceId"] = str(uuid.uuid4()).replace("-", "").lower()
|
|
63
|
-
trace(payload=payload)
|
|
64
|
-
|
|
65
32
|
def get_headers(self) -> "Optional[HeadersType]":
|
|
66
33
|
headers = Headers()
|
|
67
34
|
headers.set('Content-Type', 'application/octet-stream')
|
|
@@ -71,53 +38,84 @@ class Trace(ErrorHandlingMethodView):
|
|
|
71
38
|
headers.set('Access-Control-Allow-Credentials', 'true')
|
|
72
39
|
return headers
|
|
73
40
|
|
|
74
|
-
def post(self):
|
|
41
|
+
def post(self) -> Response:
|
|
75
42
|
"""
|
|
76
43
|
---
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
44
|
+
summary: Trace
|
|
45
|
+
description: Trace endpoint used by the pilot and CLI clients to post data access information.
|
|
46
|
+
tags:
|
|
47
|
+
- Trace
|
|
48
|
+
parameters:
|
|
49
|
+
- name: X-Forwarded-For
|
|
50
|
+
in: header
|
|
51
|
+
schema:
|
|
52
|
+
type: string
|
|
53
|
+
requestBody:
|
|
54
|
+
content:
|
|
55
|
+
application/json:
|
|
56
|
+
schema:
|
|
90
57
|
oneOf:
|
|
91
58
|
- type: object
|
|
92
|
-
|
|
59
|
+
oneOf:
|
|
60
|
+
ObjectSchema:
|
|
61
|
+
- requires: [eventType, clientState, account]
|
|
62
|
+
- description: touch one or more DIDs
|
|
63
|
+
UploadSchema:
|
|
64
|
+
- requires: [eventType, hostname, account, eventVersion, uuid, scope, dataset, remoteSite, filesize, protocol, transferStart]
|
|
65
|
+
- description: upload method
|
|
66
|
+
DownloadSchema:
|
|
67
|
+
- requires: [eventType, hostname, localSite, account, eventVersion, uuid, scope, filename, dataset, filesize, clientState, stateReason]
|
|
68
|
+
- description: download method
|
|
69
|
+
GetSchema:
|
|
70
|
+
- requires: [eventType, localSite, eventVersion, uuid, scope, filename, dataset]
|
|
71
|
+
- description: get method, mainly sent by pilots
|
|
72
|
+
PutSchema:
|
|
73
|
+
- requires: [eventType, localSite, eventVersion, uuid, scope, filename, dataset]
|
|
74
|
+
- description: put method, mainly sent by pilots
|
|
75
|
+
SpecialSchema:
|
|
76
|
+
- requires: [eventType, clientState, account]
|
|
77
|
+
- description: A special schema to capture most unsupported eventTypes
|
|
93
78
|
- type: array
|
|
94
79
|
items:
|
|
95
80
|
type: object
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
81
|
+
oneOf:
|
|
82
|
+
ObjectSchema:
|
|
83
|
+
- requires: [eventType, clientState, account]
|
|
84
|
+
- description: touch one or more DIDs
|
|
85
|
+
UploadSchema:
|
|
86
|
+
- requires: [eventType, hostname, account, eventVersion, uuid, scope, dataset, remoteSite, filesize, protocol, transferStart]
|
|
87
|
+
- description: upload method
|
|
88
|
+
DownloadSchema:
|
|
89
|
+
- requires: [eventType, hostname, localSite, account, eventVersion, uuid, scope, filename, dataset, filesize, clientState, stateReason]
|
|
90
|
+
- description: download method
|
|
91
|
+
GetSchema:
|
|
92
|
+
- requires: [eventType, localSite, eventVersion, uuid, scope, filename, dataset]
|
|
93
|
+
- description: get method, mainly sent by pilots
|
|
94
|
+
PutSchema:
|
|
95
|
+
- requires: [eventType, localSite, eventVersion, uuid, scope, filename, dataset]
|
|
96
|
+
- description: put method, mainly sent by pilots
|
|
97
|
+
SpecialSchema:
|
|
98
|
+
- requires: [eventType, clientState, account]
|
|
99
|
+
- description: A special schema to capture most unsupported eventTypes
|
|
100
|
+
responses:
|
|
101
|
+
201:
|
|
102
|
+
description: OK
|
|
103
|
+
400:
|
|
104
|
+
description: Cannot decode json data.
|
|
105
|
+
"""
|
|
103
106
|
headers = self.get_headers()
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
self.__handle_payload_item(item)
|
|
117
|
-
else:
|
|
118
|
-
self.__handle_payload_item(payload)
|
|
119
|
-
|
|
120
|
-
return "Created", 201, headers
|
|
107
|
+
parameters = request.data
|
|
108
|
+
if parameters is None:
|
|
109
|
+
err = "Invalid JSON data. Please provide a single trace as a JSON object or a list of trace objects."
|
|
110
|
+
generate_http_error_flask(400, err)
|
|
111
|
+
|
|
112
|
+
# Trace gateway handles all errors and sends them to a log - no need for any error checking
|
|
113
|
+
trace_ip = request.headers.get("X-Forwarded-For", default=request.remote_addr)
|
|
114
|
+
try:
|
|
115
|
+
trace(request=parameters, trace_ip=trace_ip)
|
|
116
|
+
return Response("Created", 201, headers)
|
|
117
|
+
except JSONDecodeError as err:
|
|
118
|
+
return generate_http_error_flask(400, err)
|
|
121
119
|
|
|
122
120
|
|
|
123
121
|
def blueprint():
|
|
@@ -71,7 +71,7 @@ class VOs(ErrorHandlingMethodView):
|
|
|
71
71
|
for vo in list_vos(issuer=issuer, vo=vo):
|
|
72
72
|
yield render_json(**vo) + '\n'
|
|
73
73
|
|
|
74
|
-
return try_stream(generate(issuer=request.environ
|
|
74
|
+
return try_stream(generate(issuer=request.environ['issuer'], vo=request.environ['vo']))
|
|
75
75
|
except AccessDenied as error:
|
|
76
76
|
return generate_http_error_flask(401, error)
|
|
77
77
|
except UnsupportedOperation as error:
|
|
@@ -118,11 +118,9 @@ class VO(ErrorHandlingMethodView):
|
|
|
118
118
|
kwargs = {'description': None, 'email': None}
|
|
119
119
|
for keyword in kwargs.keys():
|
|
120
120
|
kwargs[keyword] = param_get(parameters, keyword, default=kwargs[keyword])
|
|
121
|
-
kwargs['issuer'] = request.environ.get('issuer')
|
|
122
|
-
kwargs['vo'] = request.environ.get('vo')
|
|
123
121
|
|
|
124
122
|
try:
|
|
125
|
-
add_vo(new_vo=vo, **kwargs)
|
|
123
|
+
add_vo(new_vo=vo, issuer=request.environ['issuer'], vo=request.environ['vo'], **kwargs)
|
|
126
124
|
except AccessDenied as error:
|
|
127
125
|
return generate_http_error_flask(401, error)
|
|
128
126
|
except (UnsupportedOperation, Duplicate) as error:
|
|
@@ -167,7 +165,7 @@ class VO(ErrorHandlingMethodView):
|
|
|
167
165
|
"""
|
|
168
166
|
parameters = json_parameters()
|
|
169
167
|
try:
|
|
170
|
-
update_vo(updated_vo=vo, parameters=parameters, issuer=request.environ
|
|
168
|
+
update_vo(updated_vo=vo, parameters=parameters, issuer=request.environ['issuer'], vo=request.environ['vo'])
|
|
171
169
|
except AccessDenied as error:
|
|
172
170
|
return generate_http_error_flask(401, error)
|
|
173
171
|
except VONotFound as error:
|
|
@@ -244,8 +242,8 @@ class RecoverVO(ErrorHandlingMethodView):
|
|
|
244
242
|
email=email,
|
|
245
243
|
password=password,
|
|
246
244
|
default=default,
|
|
247
|
-
issuer=request.environ
|
|
248
|
-
vo=request.environ
|
|
245
|
+
issuer=request.environ['issuer'],
|
|
246
|
+
vo=request.environ['vo'],
|
|
249
247
|
)
|
|
250
248
|
except AccessDenied as error:
|
|
251
249
|
return generate_http_error_flask(401, error)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rucio
|
|
3
|
-
Version: 37.
|
|
3
|
+
Version: 37.3.0
|
|
4
4
|
Summary: Rucio Package
|
|
5
5
|
Home-page: https://rucio.cern.ch/
|
|
6
6
|
Author: Rucio
|
|
@@ -27,7 +27,6 @@ Requires-Dist: dogpile-cache<=1.2.2
|
|
|
27
27
|
Requires-Dist: packaging
|
|
28
28
|
Requires-Dist: tabulate
|
|
29
29
|
Requires-Dist: jsonschema
|
|
30
|
-
Requires-Dist: dataclasses
|
|
31
30
|
Requires-Dist: rich
|
|
32
31
|
Requires-Dist: typing_extensions
|
|
33
32
|
Requires-Dist: argcomplete
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
rucio/__init__.py,sha256=Y7cPPlHVQPFyN8bSPFC0W3WViEdONr5g_qwBub5rufE,660
|
|
2
2
|
rucio/alembicrevision.py,sha256=lNSQZYA4U_fsMW8l0dHpiV243XZhioqvVo9ihmpuQBo,690
|
|
3
|
-
rucio/vcsversion.py,sha256=
|
|
3
|
+
rucio/vcsversion.py,sha256=a8AHqmVeDldjkD1j62lMPxaQ5yOm6ObzSAx3KaISmDQ,244
|
|
4
4
|
rucio/version.py,sha256=IwsNb1QQk0D092QQbR2K9wBPF2Akny1RGs-ZZziUohE,1519
|
|
5
5
|
rucio/cli/__init__.py,sha256=GIkHmxgE3xdvWSf-7ZnvVaJmbs7NokaSjbFzsrXOG9o,662
|
|
6
6
|
rucio/cli/account.py,sha256=7YWLfmiplhCjaaHNSYBzd7d_4yYzxUSRrsT0xGcNr2w,9452
|
|
@@ -58,13 +58,13 @@ rucio/common/exception.py,sha256=U4Jnpv8QTkNmMG2scV4bYNzOqLsMnfrmiGeSH-P_B_g,345
|
|
|
58
58
|
rucio/common/extra.py,sha256=IE01275vTJobyNiYbptU9NmsUl2Ga_92FSoOODV8Qfk,1054
|
|
59
59
|
rucio/common/logging.py,sha256=_G1QDFpPLghz2VXOjdhC7j-TtZBxmPJsyJtztW7mf68,15874
|
|
60
60
|
rucio/common/pcache.py,sha256=pgIfBJxXYPWlD70l8g3-CVTizk_UfzaZxE27NhTvq6w,47001
|
|
61
|
-
rucio/common/plugins.py,sha256=
|
|
61
|
+
rucio/common/plugins.py,sha256=xp9Fzy9mN6JjZcE2flF-OpzC3Husj57MYk7clLlTDNY,7273
|
|
62
62
|
rucio/common/policy.py,sha256=2ByqoQQp4jpHdnnpq4-Ie7GwHslP8S9Zfu8qOqgzukU,3490
|
|
63
63
|
rucio/common/stomp_utils.py,sha256=3GTiRTJ0roe5OX_wgkVwOJYAIhGgYbhiROHc2M8LQT8,5414
|
|
64
64
|
rucio/common/stopwatch.py,sha256=_9zxoLjr8A0wUDJsljK4vZNDCI-dIOgpcxXiCNVJcHU,1641
|
|
65
65
|
rucio/common/test_rucio_server.py,sha256=2teFpN5Pthp-zQt1_aErOURDTgOhFP9GKdEr1NMmc4o,5085
|
|
66
66
|
rucio/common/types.py,sha256=THfYyGKy7KUEvkBgAXSkdI2SxZBlsSr6E3sF9OkEms4,11764
|
|
67
|
-
rucio/common/utils.py,sha256=
|
|
67
|
+
rucio/common/utils.py,sha256=nvubI6L2MH5aQy-23NmyHUVkmdeeMLbd-RYMiG85pT4,61854
|
|
68
68
|
rucio/common/dumper/__init__.py,sha256=V7D7KNmqPeVfPrBmfZDV9VfZWBiOMwLaPLtcogf31CI,10930
|
|
69
69
|
rucio/common/dumper/consistency.py,sha256=k1MLD9RAVBR7uBZxjuuQsD8PzbXzOSd6vdWytDweUx4,17962
|
|
70
70
|
rucio/common/dumper/data_models.py,sha256=ckjUy7R9ftmsSCjC1kF0Ccpjq53Eba4EWWlpHzGKI8M,11184
|
|
@@ -79,7 +79,7 @@ rucio/core/account_limit.py,sha256=Tjf5-8D9u_7cBJfG-lhAtTsI62SoMdir-ur4Gdp9acI,1
|
|
|
79
79
|
rucio/core/authentication.py,sha256=Bjd3vcizorMVH73sXFUFQ1FSKd0s55jH9GZ70QL3Y1I,21031
|
|
80
80
|
rucio/core/config.py,sha256=iEfl-64i7HDRO5Do1hQ4ibwCTV5AUlXocWrdWNF-6hw,14197
|
|
81
81
|
rucio/core/credential.py,sha256=64OJ-cpFcDQZyot4y_kEA6rsY4zvMLTmTKDQp9FvM7k,8519
|
|
82
|
-
rucio/core/did.py,sha256=
|
|
82
|
+
rucio/core/did.py,sha256=NpP0vklvLM4vQjSJZmRS8a0eMuWBN9Y1pSzQXBC918E,116298
|
|
83
83
|
rucio/core/dirac.py,sha256=WdceDXJrFIPcrvsktBSpUrxXsWjMNgrwHtaAkYt9C6c,9785
|
|
84
84
|
rucio/core/distance.py,sha256=jfmbcZUtFWDp3DaOw_o2cZGwlTIywpAtOFUmfBF-_N0,6001
|
|
85
85
|
rucio/core/exporter.py,sha256=4ZODnaVaupBdM2ILEGnQkqBtNbnJ3Ek9mSqJr41DxpA,1875
|
|
@@ -95,7 +95,7 @@ rucio/core/naming_convention.py,sha256=b4kxVLnEhbn5wlY-k8m20FLoJTKSrsGzCMDm3UfQz
|
|
|
95
95
|
rucio/core/nongrid_trace.py,sha256=ZKdnOXTMQpviGiW8xa48NswEHFGbTGXWo3xbovdVH34,5186
|
|
96
96
|
rucio/core/oidc.py,sha256=_Wy_3QSN372eVanfiEcb45AEI9Rm2ZVTv2JgmHE-3KI,70564
|
|
97
97
|
rucio/core/quarantined_replica.py,sha256=MKKn1QF5kkXLB-z_K_DJoVtksE1sSXS_WJ44NekcaZc,8323
|
|
98
|
-
rucio/core/replica.py,sha256=
|
|
98
|
+
rucio/core/replica.py,sha256=USj7ILyhDfG_j8eccCxOZwrBCPZ5WSR7MH0TveHbZs8,185501
|
|
99
99
|
rucio/core/replica_sorter.py,sha256=ONfs4G6fo0JGZ70pqDKT4k7CSRxW82LhCZnQHskJhaU,14993
|
|
100
100
|
rucio/core/request.py,sha256=5UOTb40KVMKQlEOYIoob7xkaLmsY7F-4PrK4Gw4V6I4,120385
|
|
101
101
|
rucio/core/rse.py,sha256=moRct05xU8362fSrmvSEfJRTpDQWOk7xAPO602gM8ds,70966
|
|
@@ -112,7 +112,7 @@ rucio/core/transfer.py,sha256=XAv_BPvkTqMl7teoyh3aj9W7zKmjBODG62-sqGaQGSk,64820
|
|
|
112
112
|
rucio/core/vo.py,sha256=mofxN5QO9ojqg0TXK9QgIm9UqqJV5qlocpEeOJ1_aaA,5915
|
|
113
113
|
rucio/core/volatile_replica.py,sha256=KvYcu6Lv9EOWxG3Y-yTwVUY5Taq6Zl9CHjRQPiFrYBg,5508
|
|
114
114
|
rucio/core/did_meta_plugins/__init__.py,sha256=dBkDWr3PwemYSekYvOZtWVgRHAHBHkC57XlII5Oja-k,11950
|
|
115
|
-
rucio/core/did_meta_plugins/did_column_meta.py,sha256=
|
|
115
|
+
rucio/core/did_meta_plugins/did_column_meta.py,sha256=DEJAnisEKJj0ox1e-DwQ5J2lhRIPP-LvzUpmT8IH05A,17576
|
|
116
116
|
rucio/core/did_meta_plugins/did_meta_plugin_interface.py,sha256=-2qYgyHNpglN1-zgLnewk0tlUFgj90MtkzY3RvOZNQw,4932
|
|
117
117
|
rucio/core/did_meta_plugins/elasticsearch_meta.py,sha256=YHI7felHDHzFoOr-FKxoWRNf7TeewdNQId0HtwmrUFs,15597
|
|
118
118
|
rucio/core/did_meta_plugins/filter_engine.py,sha256=tFRtA1A-T1DNlfffgfZdTJ0LCfukxyisIQy6WgfAi-8,33335
|
|
@@ -194,7 +194,7 @@ rucio/db/sqla/models.py,sha256=JfbV2EmA0kCDMVaYDxPjfhfZQuIXq_bh9ElEqJtZFhU,11175
|
|
|
194
194
|
rucio/db/sqla/sautils.py,sha256=X4gHWCkqvDlJEEHmhO2txV94__kvS8M9Hb1aJvbLaUg,2000
|
|
195
195
|
rucio/db/sqla/session.py,sha256=3FMwaJ8mcVZWBI8CiyY1tUebwhQCuPC3-24x4cQkMoM,19181
|
|
196
196
|
rucio/db/sqla/types.py,sha256=VBCDsSozh2mUNwmmBNbA5xZHkgU0FMXwRBmsc33YUtE,6090
|
|
197
|
-
rucio/db/sqla/util.py,sha256=
|
|
197
|
+
rucio/db/sqla/util.py,sha256=v_yEssfgVHRePAopfnwz0QErfnAwyRlCSzEA6WQatwg,22641
|
|
198
198
|
rucio/db/sqla/migrate_repo/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
199
199
|
rucio/db/sqla/migrate_repo/env.py,sha256=rSNoSvBSykAbjBXvQ3jpsN7MDr0xfYipdRg3VS42ji0,3545
|
|
200
200
|
rucio/db/sqla/migrate_repo/versions/01eaf73ab656_add_new_rule_notification_state_progress.py,sha256=rCIOzEnPJvd3uGqp-Ks-_KQNFoMhrLPWNXZUjSFbIlY,3340
|
|
@@ -329,27 +329,28 @@ rucio/db/sqla/migrate_repo/versions/fe8ea2fa9788_added_third_party_copy_column_t
|
|
|
329
329
|
rucio/gateway/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
330
330
|
rucio/gateway/account.py,sha256=k8byAKjrBGnNj3Dune226eq4Vf0cLxXF9voe-Cen0oU,10706
|
|
331
331
|
rucio/gateway/account_limit.py,sha256=jv-94mIFJ6hM1gCIgXL8ondA7Or34XbEneuN7rf2jIA,12458
|
|
332
|
-
rucio/gateway/authentication.py,sha256=
|
|
333
|
-
rucio/gateway/config.py,sha256=
|
|
334
|
-
rucio/gateway/credential.py,sha256=
|
|
335
|
-
rucio/gateway/did.py,sha256=
|
|
336
|
-
rucio/gateway/dirac.py,sha256=
|
|
337
|
-
rucio/gateway/exporter.py,sha256=
|
|
338
|
-
rucio/gateway/heartbeat.py,sha256=
|
|
332
|
+
rucio/gateway/authentication.py,sha256=f_v00gZIoM-FFWXiMS3alJ8K6KTARbu8enog-zawVhM,13971
|
|
333
|
+
rucio/gateway/config.py,sha256=VNIONjSTI2F-TtcjFTDeNZC-2Ro4nZ-rFKXAz1mtCpM,9365
|
|
334
|
+
rucio/gateway/credential.py,sha256=_7mHbpH5Ufv4pZNZiq2vUlGDX9XndmlM-cZoje2uVJ0,2514
|
|
335
|
+
rucio/gateway/did.py,sha256=q5c1f23365M2KkGDneUSsowo_wpE48C1-RLBz8m9jqs,32537
|
|
336
|
+
rucio/gateway/dirac.py,sha256=RcdKREiJxcL69_wJSeBfzyYtRV4vP_4q4FNnJH3hBUE,3727
|
|
337
|
+
rucio/gateway/exporter.py,sha256=fGd-kwviAg0Q4YiEisIDpRWXlKj7ccqsbTfbisf9LkM,2250
|
|
338
|
+
rucio/gateway/heartbeat.py,sha256=21UseNq472iDqVbknQmm-i3X45BPtRwI-TN7rVXEjLU,2944
|
|
339
339
|
rucio/gateway/identity.py,sha256=fXJVH6FEZZ7Wf6dYJ8yYFkFYLR0tUXBSTP1OSjxl2T0,7316
|
|
340
|
-
rucio/gateway/importer.py,sha256=
|
|
341
|
-
rucio/gateway/lifetime_exception.py,sha256=
|
|
342
|
-
rucio/gateway/lock.py,sha256=
|
|
343
|
-
rucio/gateway/meta_conventions.py,sha256=
|
|
340
|
+
rucio/gateway/importer.py,sha256=56Bqa-tJ3mC61tws-joqBCRee8iKpscSOJx5BJMx6dI,1806
|
|
341
|
+
rucio/gateway/lifetime_exception.py,sha256=9qw-Upp3EuLAtUWP7TkMYolKBFbCuagQVVxGzLWwW78,4122
|
|
342
|
+
rucio/gateway/lock.py,sha256=wnLW4Vb2zAt_80outcTzfvyLV2sp3wfkaNtzMRn_Jdw,4885
|
|
343
|
+
rucio/gateway/meta_conventions.py,sha256=538QdLNRjr98IXbrm3nf18GLbTiNdmf2KggAOW0jAlU,3691
|
|
344
344
|
rucio/gateway/permission.py,sha256=kccPOcwB2eYlj1fNah-wFlfWihCq2GqS1I8jiCK1OIc,2855
|
|
345
|
-
rucio/gateway/quarantined_replica.py,sha256=
|
|
346
|
-
rucio/gateway/replica.py,sha256=
|
|
345
|
+
rucio/gateway/quarantined_replica.py,sha256=bLoB27Xf7-1XnJmvmIvmJbBgaWrVDUCW7zqX64nkETI,2778
|
|
346
|
+
rucio/gateway/replica.py,sha256=mPvWJoWRMUkQsoYkorwd83uGrOSlc7AefH_IE5nGqDE,23422
|
|
347
347
|
rucio/gateway/request.py,sha256=IIWI4vORDb9RPN4qrzMDwUhW53VWd85mXQ41XpX962k,12431
|
|
348
|
-
rucio/gateway/rse.py,sha256=
|
|
349
|
-
rucio/gateway/rule.py,sha256=
|
|
350
|
-
rucio/gateway/scope.py,sha256=
|
|
348
|
+
rucio/gateway/rse.py,sha256=BhkIDaxgWxPBo7VNTsMdWUvGhTihP7Uho_0fm8gXFwU,24363
|
|
349
|
+
rucio/gateway/rule.py,sha256=mdjwSsQcjVcgCxDbmIvECkFuEpYmrFgOj5YRB7URpzI,18020
|
|
350
|
+
rucio/gateway/scope.py,sha256=ofcWhrAHBkFbBBadBnBpIxboTnZQ3opMB2w4-jga_vs,3168
|
|
351
351
|
rucio/gateway/subscription.py,sha256=1jueM5p4gIYeTCCbXrrCDz_FKgKAOuCSR9BNZt_N6Sg,10838
|
|
352
|
-
rucio/gateway/
|
|
352
|
+
rucio/gateway/trace.py,sha256=rsLD4fx3O_mxQJY2RtVjHO9FpwMc9jzpmxNdi7VPGBk,1903
|
|
353
|
+
rucio/gateway/vo.py,sha256=YJTOx_7o2PMkw0hPuMEYwR-b3uhm872wVJL0EEtQRgo,4939
|
|
353
354
|
rucio/rse/__init__.py,sha256=imxCKNQN59aPqPhMd2yKg7mHBMFL00OkQT1Gqb8tF54,3290
|
|
354
355
|
rucio/rse/rsemanager.py,sha256=4vYikWrwCw6c3z6N2V2DaAioJPVtp_BBL5b8YLuFWDY,41037
|
|
355
356
|
rucio/rse/translation.py,sha256=qfqc4jEB1Rq6yj3xjTz3ivxT5Hg2716M8ldO1BleSDg,9013
|
|
@@ -393,95 +394,95 @@ rucio/web/rest/flaskapi/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0Y
|
|
|
393
394
|
rucio/web/rest/flaskapi/authenticated_bp.py,sha256=Q5yRLRAfu091GVaeiXKhKd5FNdA8DlClXWDv8562TW8,999
|
|
394
395
|
rucio/web/rest/flaskapi/v1/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
395
396
|
rucio/web/rest/flaskapi/v1/accountlimits.py,sha256=LuqFEjEJ-o_9N9xEkysymnhjG0Z6mSWNKvZ0-AsGg_U,8080
|
|
396
|
-
rucio/web/rest/flaskapi/v1/accounts.py,sha256=
|
|
397
|
+
rucio/web/rest/flaskapi/v1/accounts.py,sha256=IiuPK46Cl4mD_An-Wa_URjsittwdFSN0-9dZ0tAP_ws,38193
|
|
397
398
|
rucio/web/rest/flaskapi/v1/archives.py,sha256=Q9j32sRKAtdxeax5HOEjAyWdX9C5oeNWmdNnIfgFcuE,3534
|
|
398
|
-
rucio/web/rest/flaskapi/v1/auth.py,sha256=
|
|
399
|
-
rucio/web/rest/flaskapi/v1/common.py,sha256=
|
|
400
|
-
rucio/web/rest/flaskapi/v1/config.py,sha256=
|
|
401
|
-
rucio/web/rest/flaskapi/v1/credentials.py,sha256=
|
|
402
|
-
rucio/web/rest/flaskapi/v1/dids.py,sha256=
|
|
403
|
-
rucio/web/rest/flaskapi/v1/dirac.py,sha256=
|
|
404
|
-
rucio/web/rest/flaskapi/v1/export.py,sha256=
|
|
405
|
-
rucio/web/rest/flaskapi/v1/heartbeats.py,sha256=
|
|
399
|
+
rucio/web/rest/flaskapi/v1/auth.py,sha256=iJKC0n9kjYOl-9m_6u5NrihBcQUFic1qEe-ek0ack-k,63301
|
|
400
|
+
rucio/web/rest/flaskapi/v1/common.py,sha256=a0_Ql5o7GnKvFg8lbgX9Ayk-YV3Ybbfji6pME5nc4rA,18033
|
|
401
|
+
rucio/web/rest/flaskapi/v1/config.py,sha256=SkXxSgnLQciIv0bbxn5kLRSJhVDcdOh33E6JQdfwINA,10091
|
|
402
|
+
rucio/web/rest/flaskapi/v1/credentials.py,sha256=C9eMS68t8yCCbdDtVQcNKj1UgvN4YOnMLyiOqCt-I6w,8097
|
|
403
|
+
rucio/web/rest/flaskapi/v1/dids.py,sha256=yBN8DtgZCwaYO1QWz0WzCkhkkP4gg5tIxxBXph-v714,81258
|
|
404
|
+
rucio/web/rest/flaskapi/v1/dirac.py,sha256=mljzqOuy7nrDqJIZgqj6eQ3zh5_6qEDl2jwfKFnIiMM,4702
|
|
405
|
+
rucio/web/rest/flaskapi/v1/export.py,sha256=z6NN3bs7-1RpS1K0JeNYNCTNBG9RWJ55I7sBqDtg2fE,2652
|
|
406
|
+
rucio/web/rest/flaskapi/v1/heartbeats.py,sha256=PfOyG2MO7YMkOVFbR1Jqmq56_NwRttDm27g_kPBd8SQ,4608
|
|
406
407
|
rucio/web/rest/flaskapi/v1/identities.py,sha256=LeBFsOmCKEyfDb6t_2p9Rrn0UG6V9q-z3t-H32mAcvE,8814
|
|
407
|
-
rucio/web/rest/flaskapi/v1/import.py,sha256=
|
|
408
|
-
rucio/web/rest/flaskapi/v1/lifetime_exceptions.py,sha256=
|
|
409
|
-
rucio/web/rest/flaskapi/v1/locks.py,sha256=
|
|
410
|
-
rucio/web/rest/flaskapi/v1/main.py,sha256=
|
|
411
|
-
rucio/web/rest/flaskapi/v1/meta_conventions.py,sha256=
|
|
408
|
+
rucio/web/rest/flaskapi/v1/import.py,sha256=bnvgXTF0zOUiaAAJjHRzQJ1XReocRzI73Kiarh7rBsg,5255
|
|
409
|
+
rucio/web/rest/flaskapi/v1/lifetime_exceptions.py,sha256=x7kQHL7ee-NV7J_t9eK45B68wptK_swS7DxM5g-NKBU,11989
|
|
410
|
+
rucio/web/rest/flaskapi/v1/locks.py,sha256=g73VJjqH456AICp9tLDdS3OP79FugKFcsGm_Kymg_sY,12978
|
|
411
|
+
rucio/web/rest/flaskapi/v1/main.py,sha256=n-ooBBGfCzKghr1mwmLI3qLCEvo7JDUSTXF9Hqwz82U,3423
|
|
412
|
+
rucio/web/rest/flaskapi/v1/meta_conventions.py,sha256=iYELtdSh2hgAu0FLv6nhOV8EKHOa4KBaaJvFSgBQOg4,7773
|
|
412
413
|
rucio/web/rest/flaskapi/v1/metrics.py,sha256=-tCHboUu_5hI87G_pZswhpY6koTwu6WudgW4RixOnIg,1250
|
|
413
414
|
rucio/web/rest/flaskapi/v1/nongrid_traces.py,sha256=qJdu9ZjGg1aLHxQUSjMi5TJV_dN1g4BCtTA4Wet1gcY,3130
|
|
414
415
|
rucio/web/rest/flaskapi/v1/ping.py,sha256=m3ahSzver84xECWnteEWIVuH8WSNZAs_QRZ8gY_UVZA,3095
|
|
415
416
|
rucio/web/rest/flaskapi/v1/redirect.py,sha256=5LBpKZ6jU87FU2lgLv9qrnhWA0XmIVMO4BmNweEErf4,13571
|
|
416
|
-
rucio/web/rest/flaskapi/v1/replicas.py,sha256=
|
|
417
|
+
rucio/web/rest/flaskapi/v1/replicas.py,sha256=0vE_B7vK_OEqNI2fIR3BI1adPt7n7Kejb7Chsr_D8qY,72654
|
|
417
418
|
rucio/web/rest/flaskapi/v1/requests.py,sha256=GK1PdEmA2ceztrI_RPv0XXa5Xh5URSS44EDHNojKADY,41942
|
|
418
|
-
rucio/web/rest/flaskapi/v1/rses.py,sha256=
|
|
419
|
-
rucio/web/rest/flaskapi/v1/rules.py,sha256=
|
|
420
|
-
rucio/web/rest/flaskapi/v1/scopes.py,sha256=
|
|
419
|
+
rucio/web/rest/flaskapi/v1/rses.py,sha256=x8MHCo4JTJNzzNF1HeZg1ElQ-1ZlllKQHIadnvO9mOQ,82022
|
|
420
|
+
rucio/web/rest/flaskapi/v1/rules.py,sha256=Qj4aiD8eq31oOshR_z74AiIWAvSOxz-VnNGVrT6L4O0,32117
|
|
421
|
+
rucio/web/rest/flaskapi/v1/scopes.py,sha256=R36LZRQIBVul-UZTX-Oes_qnAZK5tbDkEhmVR8Z0eCM,5056
|
|
421
422
|
rucio/web/rest/flaskapi/v1/subscriptions.py,sha256=uAJz5NOZpWAqlPoaaShZqtm-xXkvizvzVZN1mp4lqv8,24678
|
|
422
|
-
rucio/web/rest/flaskapi/v1/traces.py,sha256=
|
|
423
|
+
rucio/web/rest/flaskapi/v1/traces.py,sha256=6AS6WWRQceOuXKoIHsEJbDsQUcdL56a8fs1wocfKY0o,5716
|
|
423
424
|
rucio/web/rest/flaskapi/v1/types.py,sha256=kY-nml_En9zwkKu9TEYwEZGaF2NJ09gN2IUY7h9rp68,799
|
|
424
|
-
rucio/web/rest/flaskapi/v1/vos.py,sha256=
|
|
425
|
+
rucio/web/rest/flaskapi/v1/vos.py,sha256=V1ymoOSL8Atom2j2dGDrQitW6cRZgW-IzLrj1_42LZs,9088
|
|
425
426
|
rucio/web/rest/flaskapi/v1/templates/auth_crash.html,sha256=enhyVliQHlblgCEHvBzAlLxymFySlc42tk87vfWdBo0,2254
|
|
426
427
|
rucio/web/rest/flaskapi/v1/templates/auth_granted.html,sha256=SDsrTCQhwklLu3mDtSTUATnK16QG1T-eWDTDjmv8bn4,2139
|
|
427
|
-
rucio-37.
|
|
428
|
-
rucio-37.
|
|
429
|
-
rucio-37.
|
|
430
|
-
rucio-37.
|
|
431
|
-
rucio-37.
|
|
432
|
-
rucio-37.
|
|
433
|
-
rucio-37.
|
|
434
|
-
rucio-37.
|
|
435
|
-
rucio-37.
|
|
436
|
-
rucio-37.
|
|
437
|
-
rucio-37.
|
|
438
|
-
rucio-37.
|
|
439
|
-
rucio-37.
|
|
440
|
-
rucio-37.
|
|
441
|
-
rucio-37.
|
|
442
|
-
rucio-37.
|
|
443
|
-
rucio-37.
|
|
444
|
-
rucio-37.
|
|
445
|
-
rucio-37.
|
|
446
|
-
rucio-37.
|
|
447
|
-
rucio-37.
|
|
448
|
-
rucio-37.
|
|
449
|
-
rucio-37.
|
|
450
|
-
rucio-37.
|
|
451
|
-
rucio-37.
|
|
452
|
-
rucio-37.
|
|
453
|
-
rucio-37.
|
|
454
|
-
rucio-37.
|
|
455
|
-
rucio-37.
|
|
456
|
-
rucio-37.
|
|
457
|
-
rucio-37.
|
|
458
|
-
rucio-37.
|
|
459
|
-
rucio-37.
|
|
460
|
-
rucio-37.
|
|
461
|
-
rucio-37.
|
|
462
|
-
rucio-37.
|
|
463
|
-
rucio-37.
|
|
464
|
-
rucio-37.
|
|
465
|
-
rucio-37.
|
|
466
|
-
rucio-37.
|
|
467
|
-
rucio-37.
|
|
468
|
-
rucio-37.
|
|
469
|
-
rucio-37.
|
|
470
|
-
rucio-37.
|
|
471
|
-
rucio-37.
|
|
472
|
-
rucio-37.
|
|
473
|
-
rucio-37.
|
|
474
|
-
rucio-37.
|
|
475
|
-
rucio-37.
|
|
476
|
-
rucio-37.
|
|
477
|
-
rucio-37.
|
|
478
|
-
rucio-37.
|
|
479
|
-
rucio-37.
|
|
480
|
-
rucio-37.
|
|
481
|
-
rucio-37.
|
|
482
|
-
rucio-37.
|
|
483
|
-
rucio-37.
|
|
484
|
-
rucio-37.
|
|
485
|
-
rucio-37.
|
|
486
|
-
rucio-37.
|
|
487
|
-
rucio-37.
|
|
428
|
+
rucio-37.3.0.data/data/rucio/requirements.server.txt,sha256=OLvhbLbJ_9J93IJg1_9D2jyRFteFXwd0j2qOLp7PMm0,5961
|
|
429
|
+
rucio-37.3.0.data/data/rucio/etc/alembic.ini.template,sha256=3eFdZvlBhtyYQcRCWGoehy4xfHe0xXqUCnxC91Neg9k,1772
|
|
430
|
+
rucio-37.3.0.data/data/rucio/etc/alembic_offline.ini.template,sha256=Zg39kR-_rmxU7X9BP5x68ccSx1UNMEOzOy2JC0D4O8c,1930
|
|
431
|
+
rucio-37.3.0.data/data/rucio/etc/globus-config.yml.template,sha256=ADOplXW10bO5KZVYRavwKgNaDR0VmdJ3gVbINeqoSIA,96
|
|
432
|
+
rucio-37.3.0.data/data/rucio/etc/ldap.cfg.template,sha256=2n-Exv81toCDZ6OzuNfMa71OoiLTdCSjWhkzCfSN3eM,806
|
|
433
|
+
rucio-37.3.0.data/data/rucio/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
|
|
434
|
+
rucio-37.3.0.data/data/rucio/etc/rucio.cfg.atlas.client.template,sha256=aHP1oX9m5yA8xVTTT2Hz6AyOYu92-Bcd5LF0i3AZRQw,1350
|
|
435
|
+
rucio-37.3.0.data/data/rucio/etc/rucio.cfg.template,sha256=iqtbivJDlngApmuJDiOLDQPRlxDRfljpLmiT_tzlUrM,8081
|
|
436
|
+
rucio-37.3.0.data/data/rucio/etc/rucio_multi_vo.cfg.template,sha256=NbvzcC9EZm0HpmjIC60KMPwOHHn9ScM5Twb4c6MoOHc,6992
|
|
437
|
+
rucio-37.3.0.data/data/rucio/etc/mail_templates/rule_approval_request.tmpl,sha256=MTrB-IQEFE6TJnkwXjLxlUIc4afHmmrdQDC1S5og_dM,1210
|
|
438
|
+
rucio-37.3.0.data/data/rucio/etc/mail_templates/rule_approved_admin.tmpl,sha256=HxYNm7EKG9cMNkwUNPgZUC7o0Q9-DTINh1JtGtHOYUg,105
|
|
439
|
+
rucio-37.3.0.data/data/rucio/etc/mail_templates/rule_approved_user.tmpl,sha256=R4rssZ2hE8wcYPmAyc-UDpO5SPhMLZGNuYz6pvLjPVc,499
|
|
440
|
+
rucio-37.3.0.data/data/rucio/etc/mail_templates/rule_denied_admin.tmpl,sha256=feXJ3pZynlESBuPoe_y8amB84UQnLaP6SHtRk3cn7ZA,120
|
|
441
|
+
rucio-37.3.0.data/data/rucio/etc/mail_templates/rule_denied_user.tmpl,sha256=O054th_sVqZTFUeC3Gg_Qe8CrXQb-bxJhMaO48VMzzU,493
|
|
442
|
+
rucio-37.3.0.data/data/rucio/etc/mail_templates/rule_ok_notification.tmpl,sha256=EiT0KucfIKYnIN5XO9XawzZAJSVRYlza5sn8VloyBy4,546
|
|
443
|
+
rucio-37.3.0.data/data/rucio/tools/bootstrap.py,sha256=iI0Ue2mrRJdjFITm93DLHUBxDb_yfEoMUDpgO5Bqkhw,1259
|
|
444
|
+
rucio-37.3.0.data/data/rucio/tools/merge_rucio_configs.py,sha256=u62K1EcCGydM5nZA30zhlqWo4EX5N87b_MDkx5YfzVI,6163
|
|
445
|
+
rucio-37.3.0.data/data/rucio/tools/reset_database.py,sha256=ctvzWtRCQT69GNvmjDxtuSq8XM0B7VTdC0y-ALnHQsI,1351
|
|
446
|
+
rucio-37.3.0.data/scripts/rucio,sha256=xQRL_0mwut48KxOgWZexsSx9jfnaZHqSTAo7OnCHAgA,5081
|
|
447
|
+
rucio-37.3.0.data/scripts/rucio-abacus-account,sha256=C4ThueuI3gM3IVY9h1-T6xzkxFKMLmg2XTgSY7u7HXk,2806
|
|
448
|
+
rucio-37.3.0.data/scripts/rucio-abacus-collection-replica,sha256=HD2acGu8xBDAsKGCA7oLQvcY5SdT1mIQhSrREDV2n_M,1809
|
|
449
|
+
rucio-37.3.0.data/scripts/rucio-abacus-rse,sha256=3ws35qgLNh6FePNJMbPB2GDMvXw6rHGuxh5t8qVByNs,2553
|
|
450
|
+
rucio-37.3.0.data/scripts/rucio-admin,sha256=AhPO6-fAPviHObhB_Yi7GJXKfjpaH6m0RqxwctBeFlE,4229
|
|
451
|
+
rucio-37.3.0.data/scripts/rucio-atropos,sha256=o6KsmbjxbFgtKWl7gZbmBxBc3gYWax6FkkyfhUDmKbY,3171
|
|
452
|
+
rucio-37.3.0.data/scripts/rucio-auditor,sha256=SXjgj5V9utNNhFYDO7pa7hejpJORZVPPQkhxguUWNyk,6114
|
|
453
|
+
rucio-37.3.0.data/scripts/rucio-automatix,sha256=Lgud3OXVqUcBrPMtTAgSgPE5ZWSr74FBfBh0EoA9-E8,1996
|
|
454
|
+
rucio-37.3.0.data/scripts/rucio-bb8,sha256=TD8P3cMiDB_knZKZcGTQsy8aA7nPQXMC1TNPCyXrsSg,3089
|
|
455
|
+
rucio-37.3.0.data/scripts/rucio-cache-client,sha256=71-xm4MyxEDBlwnlviHsOgF0tx5EbADsPoVpj_DJDkA,5276
|
|
456
|
+
rucio-37.3.0.data/scripts/rucio-cache-consumer,sha256=5mCXRQWwAww3aabTMQh-U9HgHFkCJf3VpTHdk9R-rsU,1348
|
|
457
|
+
rucio-37.3.0.data/scripts/rucio-conveyor-finisher,sha256=mAexgdlj41UOwIQDZ5POU8gTRMuKzaOqhEww6cRV2rI,2333
|
|
458
|
+
rucio-37.3.0.data/scripts/rucio-conveyor-poller,sha256=z2C17x3n_eKdDrL1w1ePJpslkbOw2UMTh5BaOw-__Es,2825
|
|
459
|
+
rucio-37.3.0.data/scripts/rucio-conveyor-preparer,sha256=jlaBQbN8f081ekInQxn3QcNvrQQqedmdjQ6PeEp9JeU,1746
|
|
460
|
+
rucio-37.3.0.data/scripts/rucio-conveyor-receiver,sha256=Tgg6oXQp1G31ZK_7OKh6fLvcO3GdGi55b7xho2I9B74,1669
|
|
461
|
+
rucio-37.3.0.data/scripts/rucio-conveyor-stager,sha256=AaFzBHTahrv5--H16lbpUlXc64hijLL_myakuJ0V-oI,3371
|
|
462
|
+
rucio-37.3.0.data/scripts/rucio-conveyor-submitter,sha256=IMENh4rK8w6KbjZaOD8UJEv5BHdiFDjhfsHmZZK-T80,6738
|
|
463
|
+
rucio-37.3.0.data/scripts/rucio-conveyor-throttler,sha256=HS0vqTtMlrwUlsVM8a6aSHu0Kh4qkj52A3rqYuBy7bg,3845
|
|
464
|
+
rucio-37.3.0.data/scripts/rucio-dark-reaper,sha256=GmQAUNmmJKJjeuY7jbQIHvrbdQWRJSlqojMF_6h8j2Y,2532
|
|
465
|
+
rucio-37.3.0.data/scripts/rucio-dumper,sha256=zGfdsamPIUxbnDFDPM6FtqR1d3FH1AdC0gtH1JeLaxU,6729
|
|
466
|
+
rucio-37.3.0.data/scripts/rucio-follower,sha256=sXVEogQcoH0IxLy5qO-cjly-aVPCJ7uVcVsZtfyd2Pk,1400
|
|
467
|
+
rucio-37.3.0.data/scripts/rucio-hermes,sha256=i238hHzuv9JNUUPHNcOjnFQSs6BpPmz88t8ZFgS2GxI,1973
|
|
468
|
+
rucio-37.3.0.data/scripts/rucio-judge-cleaner,sha256=AKF8Jz67xRjiInuex003AXxTnOwTN2DQN38RS9jkrLY,4635
|
|
469
|
+
rucio-37.3.0.data/scripts/rucio-judge-evaluator,sha256=JrWN2ZatnUig5iWM7Ku4nEspXBjaucOrc8Ic55_OCzc,7458
|
|
470
|
+
rucio-37.3.0.data/scripts/rucio-judge-injector,sha256=d6na_n4H7njpUmJQg2Gc4KlbgK0_xuW5vw3waLReLTQ,1657
|
|
471
|
+
rucio-37.3.0.data/scripts/rucio-judge-repairer,sha256=QHeBySAn1bYS17z5dTfq8o81uEUpqhGVUqe6KWZBVmQ,1661
|
|
472
|
+
rucio-37.3.0.data/scripts/rucio-kronos,sha256=WQQ0izYfdVvmfaaRkqSf4mejL-U86OL5mD5v1t2p6Eg,1770
|
|
473
|
+
rucio-37.3.0.data/scripts/rucio-minos,sha256=-utVl82-xd7zxp4yy1udqCm_MehRP7pU5WDdJ7EFuac,2246
|
|
474
|
+
rucio-37.3.0.data/scripts/rucio-minos-temporary-expiration,sha256=E9G_h__cJNWuEcFDoeBFjzCHqp1swW-ff67M2WpZ3eg,1983
|
|
475
|
+
rucio-37.3.0.data/scripts/rucio-necromancer,sha256=axQkxvue4PyLv5zQLyEtarTA1JgQIDJYDdLqEc7I4Ww,5612
|
|
476
|
+
rucio-37.3.0.data/scripts/rucio-oauth-manager,sha256=qqFyI_L-bHg4R6a3OSgL_RsmosuODykX7HM-u0Mr-nY,2776
|
|
477
|
+
rucio-37.3.0.data/scripts/rucio-reaper,sha256=c0aMDs0N0ubKcl5T5aHunqaBcmIIj6WmERReKTS9di4,3773
|
|
478
|
+
rucio-37.3.0.data/scripts/rucio-replica-recoverer,sha256=_LoVZbOxENNsmOSTOYW0g1fXYl19j8o5F6zmgDzIzmE,19002
|
|
479
|
+
rucio-37.3.0.data/scripts/rucio-rse-decommissioner,sha256=zXXTq1lPzoI5R012fGWrxXi9VcHZNIfB85EefwQN1kw,2337
|
|
480
|
+
rucio-37.3.0.data/scripts/rucio-storage-consistency-actions,sha256=Mb4GUO1kP7HdiCORhHkYfmfZIhJKp88RBr8TEC19HXo,3906
|
|
481
|
+
rucio-37.3.0.data/scripts/rucio-transmogrifier,sha256=i17F1FTrxharmCWVZpylXSH2Xow2KaxkTr2jzDFn8Rc,3350
|
|
482
|
+
rucio-37.3.0.data/scripts/rucio-undertaker,sha256=HQ-irdSrsftrsS8NdVjGhxYlFE4hDVo9bh32jTwNCCc,2706
|
|
483
|
+
rucio-37.3.0.dist-info/licenses/AUTHORS.rst,sha256=c4MEJjLcFZ5euNtPA7jGFL26javbFKpWTvxBoIs_l6w,4726
|
|
484
|
+
rucio-37.3.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
485
|
+
rucio-37.3.0.dist-info/METADATA,sha256=jPXTuzYBS0RJkubWXQkQXN0UJiFx0unK469A56ehdvA,2957
|
|
486
|
+
rucio-37.3.0.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
|
487
|
+
rucio-37.3.0.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
|
|
488
|
+
rucio-37.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl
RENAMED
|
File without changes
|
{rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl
RENAMED
|
File without changes
|
{rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl
RENAMED
|
File without changes
|
{rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_denied_user.tmpl
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rucio-37.1.0.post1.data → rucio-37.3.0.data}/data/rucio/etc/rucio.cfg.atlas.client.template
RENAMED
|
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
|