rucio 37.2.0__py3-none-any.whl → 37.4.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/cli/rule.py +1 -1
- rucio/client/accountclient.py +205 -60
- rucio/client/accountlimitclient.py +84 -25
- rucio/client/baseclient.py +85 -48
- rucio/client/client.py +49 -41
- rucio/client/configclient.py +36 -13
- rucio/client/credentialclient.py +16 -6
- rucio/client/didclient.py +321 -133
- rucio/client/diracclient.py +13 -6
- rucio/client/downloadclient.py +435 -165
- rucio/client/exportclient.py +8 -2
- rucio/client/fileclient.py +10 -3
- rucio/client/importclient.py +4 -1
- rucio/client/lifetimeclient.py +48 -31
- rucio/client/lockclient.py +22 -7
- rucio/client/metaconventionsclient.py +59 -21
- rucio/client/pingclient.py +3 -1
- rucio/client/replicaclient.py +213 -96
- rucio/client/requestclient.py +123 -16
- rucio/client/rseclient.py +385 -160
- rucio/client/ruleclient.py +147 -51
- rucio/client/scopeclient.py +35 -10
- rucio/client/subscriptionclient.py +60 -27
- rucio/client/touchclient.py +16 -7
- rucio/common/plugins.py +1 -1
- rucio/core/did.py +2 -3
- rucio/core/permission/generic.py +37 -1
- rucio/core/replica.py +6 -6
- rucio/core/rule.py +5 -3
- rucio/daemons/judge/evaluator.py +1 -1
- rucio/db/sqla/util.py +1 -1
- rucio/gateway/authentication.py +58 -88
- rucio/gateway/config.py +63 -75
- rucio/gateway/did.py +245 -329
- rucio/gateway/dirac.py +33 -34
- rucio/gateway/exporter.py +27 -30
- rucio/gateway/importer.py +12 -14
- rucio/gateway/lifetime_exception.py +16 -24
- rucio/gateway/lock.py +27 -40
- rucio/gateway/replica.py +334 -249
- rucio/gateway/request.py +176 -103
- rucio/gateway/rse.py +191 -218
- rucio/gateway/rule.py +115 -146
- rucio/gateway/scope.py +18 -25
- rucio/gateway/subscription.py +90 -108
- rucio/gateway/trace.py +48 -0
- 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 +3 -0
- rucio/web/rest/flaskapi/v1/config.py +7 -7
- 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/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/redirect.py +1 -1
- rucio/web/rest/flaskapi/v1/replicas.py +30 -29
- rucio/web/rest/flaskapi/v1/requests.py +211 -20
- 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/subscriptions.py +9 -9
- rucio/web/rest/flaskapi/v1/traces.py +75 -77
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/rucio.cfg.template +0 -1
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/rucio_multi_vo.cfg.template +0 -1
- {rucio-37.2.0.dist-info → rucio-37.4.0.dist-info}/METADATA +1 -1
- {rucio-37.2.0.dist-info → rucio-37.4.0.dist-info}/RECORD +127 -126
- {rucio-37.2.0.dist-info → rucio-37.4.0.dist-info}/WHEEL +1 -1
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/alembic.ini.template +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/alembic_offline.ini.template +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/globus-config.yml.template +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/ldap.cfg.template +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_denied_user.tmpl +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_ok_notification.tmpl +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/rse-accounts.cfg.template +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/rucio.cfg.atlas.client.template +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/requirements.server.txt +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/tools/bootstrap.py +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/tools/merge_rucio_configs.py +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/tools/reset_database.py +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-abacus-account +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-abacus-collection-replica +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-abacus-rse +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-admin +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-atropos +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-auditor +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-automatix +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-bb8 +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-cache-client +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-cache-consumer +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-finisher +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-poller +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-preparer +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-receiver +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-stager +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-submitter +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-throttler +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-dark-reaper +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-dumper +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-follower +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-hermes +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-judge-cleaner +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-judge-evaluator +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-judge-injector +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-judge-repairer +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-kronos +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-minos +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-minos-temporary-expiration +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-necromancer +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-oauth-manager +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-reaper +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-replica-recoverer +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-rse-decommissioner +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-storage-consistency-actions +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-transmogrifier +0 -0
- {rucio-37.2.0.data → rucio-37.4.0.data}/scripts/rucio-undertaker +0 -0
- {rucio-37.2.0.dist-info → rucio-37.4.0.dist-info}/licenses/AUTHORS.rst +0 -0
- {rucio-37.2.0.dist-info → rucio-37.4.0.dist-info}/licenses/LICENSE +0 -0
- {rucio-37.2.0.dist-info → rucio-37.4.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():
|
|
@@ -116,7 +116,6 @@ metrics_port = 8080
|
|
|
116
116
|
[conveyor]
|
|
117
117
|
scheme = srm,gsiftp,root,http,https
|
|
118
118
|
transfertool = fts3
|
|
119
|
-
ftshosts = https://fts3-pilot.cern.ch:8446, https://fts3-pilot.cern.ch:8446
|
|
120
119
|
cacert = /opt/rucio/etc/web/ca.crt
|
|
121
120
|
usercert = /opt/rucio/tools/x509up
|
|
122
121
|
|
|
@@ -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=KzL-fCgcmR0Ut9LUIsgwG_O5DxkM-hvyOmUyYl75wsE,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
|
|
@@ -11,7 +11,7 @@ rucio/cli/download.py,sha256=nltAf8nm8P6nrfIu0CUveY4YM6oL5nSR3w6yS4qBbw0,6248
|
|
|
11
11
|
rucio/cli/lifetime_exception.py,sha256=joi9HdaiYP_g3115IR_ImX7oFlEg1xbSaK-IzmoIVcY,1498
|
|
12
12
|
rucio/cli/replica.py,sha256=ZRvLONlD0enuuDLgDm5iAia-HEaOg8PDepJPImEu9fo,8169
|
|
13
13
|
rucio/cli/rse.py,sha256=rb4Cdo5Ywb4qbwXe0y7g8ctgZq03Mn9JgddkhdDgDHI,11619
|
|
14
|
-
rucio/cli/rule.py,sha256=
|
|
14
|
+
rucio/cli/rule.py,sha256=NZAMXIWesI85v-5xuv9aQWoNouDcGq7ve_dpamYuuMk,8808
|
|
15
15
|
rucio/cli/scope.py,sha256=0AuXGSQWYOas1EgkFq6KCuwqh_fuMzUgnp_jqQ_Y2t0,1574
|
|
16
16
|
rucio/cli/subscription.py,sha256=fWUrdP1TIrrWXmmWODTHh4fCmIW-LFLNrv3OYJXUAYM,4269
|
|
17
17
|
rucio/cli/upload.py,sha256=29gJGfb7jsiA6-UwPCSg1kGZu-OJ-bdxUZr27S2mJEM,3237
|
|
@@ -20,30 +20,30 @@ rucio/cli/bin_legacy/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0Yrgt
|
|
|
20
20
|
rucio/cli/bin_legacy/rucio.py,sha256=cDUeMb_K38jGWmPM4oZh-s4iKLbwnEAvgGMq8wHec3g,144678
|
|
21
21
|
rucio/cli/bin_legacy/rucio_admin.py,sha256=Lw_fYlTUG-5fcTRpgcdHxDN63jyaTjZRbx8DaciQYAc,140847
|
|
22
22
|
rucio/client/__init__.py,sha256=0-jkSlrJf-eqbN4swA5a07eaWd6_6JXPQPLXMs4A3iI,660
|
|
23
|
-
rucio/client/accountclient.py,sha256=
|
|
24
|
-
rucio/client/accountlimitclient.py,sha256=
|
|
25
|
-
rucio/client/baseclient.py,sha256=
|
|
26
|
-
rucio/client/client.py,sha256=
|
|
27
|
-
rucio/client/configclient.py,sha256=
|
|
28
|
-
rucio/client/credentialclient.py,sha256=
|
|
29
|
-
rucio/client/didclient.py,sha256=
|
|
30
|
-
rucio/client/diracclient.py,sha256=
|
|
31
|
-
rucio/client/downloadclient.py,sha256=
|
|
32
|
-
rucio/client/exportclient.py,sha256=
|
|
33
|
-
rucio/client/fileclient.py,sha256=
|
|
34
|
-
rucio/client/importclient.py,sha256=
|
|
35
|
-
rucio/client/lifetimeclient.py,sha256=
|
|
36
|
-
rucio/client/lockclient.py,sha256=
|
|
37
|
-
rucio/client/metaconventionsclient.py,sha256=
|
|
38
|
-
rucio/client/pingclient.py,sha256=
|
|
39
|
-
rucio/client/replicaclient.py,sha256=
|
|
40
|
-
rucio/client/requestclient.py,sha256=
|
|
23
|
+
rucio/client/accountclient.py,sha256=kScbVL9rR8pyZRmETOyz_gwffc7biaPriMgDnCLxA_0,18864
|
|
24
|
+
rucio/client/accountlimitclient.py,sha256=SWYdRMAMibWLZOhFb3HBI9vLvmp2uYjEhtM2ej1iGzQ,6905
|
|
25
|
+
rucio/client/baseclient.py,sha256=OgIR6Onvvh0fyO_AR_ft9k_KyXgW7pac6goB9qRNnSA,50274
|
|
26
|
+
rucio/client/client.py,sha256=XEDzDmujYyTYnSbQOBh19XirM-gxnTWC6Xy6oXjFgNk,4409
|
|
27
|
+
rucio/client/configclient.py,sha256=pbp_yEem7g8JTVVOMY-ehMyLh6T3Rxf1AxCluLE-JE8,4800
|
|
28
|
+
rucio/client/credentialclient.py,sha256=q4i_t-dIiojRmiY70iuJsAgnPqaZVwkJLbThxoc8_9k,2214
|
|
29
|
+
rucio/client/didclient.py,sha256=AbS_RFD1_jIcr_jm5H6XYn4PVzsq288C79K1-hWa5NQ,34619
|
|
30
|
+
rucio/client/diracclient.py,sha256=hgF_eF5_NfY0UTedrXMtmuwT4rVgCf3-bdsv7VhObDA,2467
|
|
31
|
+
rucio/client/downloadclient.py,sha256=sN33aiGqPVWAufeMs5p2Drj5gPHZVbbVEIkXONHu54s,91645
|
|
32
|
+
rucio/client/exportclient.py,sha256=vxH12KqLjaOQxQRkA95oZnJWjPJgEMBtvmo0NReurug,1713
|
|
33
|
+
rucio/client/fileclient.py,sha256=akpgLwhbRTWNriyI8yGWTGgXbTu-Ka5jmwwVdJBwmVw,1756
|
|
34
|
+
rucio/client/importclient.py,sha256=KeEWZhjrsAR5Km_UXwwH7hzgEo9ACJaJXN6de87txe4,1560
|
|
35
|
+
rucio/client/lifetimeclient.py,sha256=lAtAzia-UWMzzkcFGPQ72kaiSe1iIbIaCBrxK0bD3GQ,5958
|
|
36
|
+
rucio/client/lockclient.py,sha256=LNHjdNRi5ST8KqVBR9SAiaygPF5zmRR7hendaBF21uE,4421
|
|
37
|
+
rucio/client/metaconventionsclient.py,sha256=tYvqXtcByiINcmZe0nT5Id2VuyJ2EDDUP2vfOPO6_yY,5655
|
|
38
|
+
rucio/client/pingclient.py,sha256=DU3HXbvEYsbo-3V1PypOXcMMfmYeiUHBAf9mdYM7LZM,1418
|
|
39
|
+
rucio/client/replicaclient.py,sha256=C7t-nw1Ou0W-Ni9PUpdzTDLtIbz0cIgANX387KORUB8,20591
|
|
40
|
+
rucio/client/requestclient.py,sha256=veFhd7r2zx5Rg-N8q8keR5qL43F4ec549SigyC5z1Lc,8549
|
|
41
41
|
rucio/client/richclient.py,sha256=kP6cHQsvCtKEl1c2fycqpDjfLrMAzaMxuZA_kWddm08,10111
|
|
42
|
-
rucio/client/rseclient.py,sha256=
|
|
43
|
-
rucio/client/ruleclient.py,sha256=
|
|
44
|
-
rucio/client/scopeclient.py,sha256
|
|
45
|
-
rucio/client/subscriptionclient.py,sha256=
|
|
46
|
-
rucio/client/touchclient.py,sha256=
|
|
42
|
+
rucio/client/rseclient.py,sha256=4R-WcCROjPRfWjcWuFM7itf4vmRRk0qvOa-itnTlZ8w,31858
|
|
43
|
+
rucio/client/ruleclient.py,sha256=tlYRFMKVwjCuzketqg2F4XoGydbhNAjkOnm1BGUZEVg,13639
|
|
44
|
+
rucio/client/scopeclient.py,sha256=-rXLdXScKeXavOaw9EwBHYo4SXwfcuqsOG6yGMIBWyM,3485
|
|
45
|
+
rucio/client/subscriptionclient.py,sha256=SVCOSfwJGSx-DRGznMFnt8ez1zqvGfpIKne9f7DhdNo,8417
|
|
46
|
+
rucio/client/touchclient.py,sha256=YFjoxiFuOEpLOEfgEvw7mkkl558uWX-7F-3mqCMfG-Y,2822
|
|
47
47
|
rucio/client/uploadclient.py,sha256=ux32JMceTNwZ82UL_wQpUJbI7USgMIk4ZYjmiD5KNuM,50407
|
|
48
48
|
rucio/common/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
49
49
|
rucio/common/bittorrent.py,sha256=cpz-axibeHmO-Nk3-RH5JTvF6PjvmrRY0rOCgRjmaHk,8834
|
|
@@ -58,7 +58,7 @@ 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
|
|
@@ -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,14 +95,14 @@ 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=uIEFdqkEfr-C0FlWuqPXbByWl8-J2dSW1ZwFRYet8FU,185495
|
|
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
|
|
102
102
|
rucio/core/rse_counter.py,sha256=5N3k5X6p-4PkDsNz-8TXnAWeU2oj8ti4epRDLJj3FWM,6093
|
|
103
103
|
rucio/core/rse_expression_parser.py,sha256=txTYmddSOqdFxia_wkLXZMEtw2SoyOWnhOmzbhtdbsk,15511
|
|
104
104
|
rucio/core/rse_selector.py,sha256=Of9cWR0JA5Su00zn8_KZwHrtKN9YbkzcfGzsWsLhL3I,14596
|
|
105
|
-
rucio/core/rule.py,sha256=
|
|
105
|
+
rucio/core/rule.py,sha256=TApIIgpMDOdctG1iwFbPhDAANrhRulT446JjLYKfuu4,209120
|
|
106
106
|
rucio/core/rule_grouping.py,sha256=DMmpEvWiHNnL-Umo98fJTA57Krd96E2nlsOCDHH-rvc,96092
|
|
107
107
|
rucio/core/scope.py,sha256=seNIkdilDVilOvA0IQstLeUBU7DrkDPzxW63rtDmMnI,5910
|
|
108
108
|
rucio/core/subscription.py,sha256=i1zgc2FnceDgrkYzjMFRTTDvWlFssvv_qHgnkJyR_NY,16407
|
|
@@ -120,7 +120,7 @@ rucio/core/did_meta_plugins/json_meta.py,sha256=yurzU09OP0eCl3JjoHFbKJ0TK0svDMEX
|
|
|
120
120
|
rucio/core/did_meta_plugins/mongo_meta.py,sha256=Vg8SAWc-KTMu8D6unHqrAyhuPUUpKNp39pEeOgYJY5g,8535
|
|
121
121
|
rucio/core/did_meta_plugins/postgres_meta.py,sha256=lqP9lcit49zDS1L9oc8MCjkkrMnizxQ6GszPFZQCSbQ,14262
|
|
122
122
|
rucio/core/permission/__init__.py,sha256=qq3XPYfpYmqHLhS9iuJCewpxjZoNfGz9_dF16fHMIg4,6193
|
|
123
|
-
rucio/core/permission/generic.py,sha256=
|
|
123
|
+
rucio/core/permission/generic.py,sha256=ixlOovfmfnyXbwxROrvrQxzPrjpEEcndq6xETED96FQ,49898
|
|
124
124
|
rucio/core/permission/generic_multi_vo.py,sha256=w1A6o4lnon8KIwk4io5UM9dbl3ujrBlumB6BJe9nkpM,45653
|
|
125
125
|
rucio/daemons/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
126
126
|
rucio/daemons/common.py,sha256=wYloaZyPl2finMAWYC5OFr7W3DPbsBFpWzerNJ04uLI,15550
|
|
@@ -161,7 +161,7 @@ rucio/daemons/hermes/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0Yrgt
|
|
|
161
161
|
rucio/daemons/hermes/hermes.py,sha256=Z3vKranH8260SOnk76ELiPSANnX8sBBpxpa6hmJTWro,29781
|
|
162
162
|
rucio/daemons/judge/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
163
163
|
rucio/daemons/judge/cleaner.py,sha256=yCv9prY-L_rpkJE2YhkKcCtaDgs2SMGS9HKi_O1hKFM,5956
|
|
164
|
-
rucio/daemons/judge/evaluator.py,sha256=
|
|
164
|
+
rucio/daemons/judge/evaluator.py,sha256=ZTOXgzIg5D6vu5f6aplRmQFRjgecvYtQFsYNjZZALho,7430
|
|
165
165
|
rucio/daemons/judge/injector.py,sha256=XPW1rHejISjRpVv7Aqts7B-IA8vfsQfLL9ruHfMRqDk,6578
|
|
166
166
|
rucio/daemons/judge/repairer.py,sha256=8QxdS5UHtI_j_atIDKQi5NjHGDsiIkN2nQCFhL4l1qQ,5507
|
|
167
167
|
rucio/daemons/oauthmanager/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
@@ -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,26 +329,27 @@ 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=
|
|
332
|
+
rucio/gateway/authentication.py,sha256=f_v00gZIoM-FFWXiMS3alJ8K6KTARbu8enog-zawVhM,13971
|
|
333
|
+
rucio/gateway/config.py,sha256=VNIONjSTI2F-TtcjFTDeNZC-2Ro4nZ-rFKXAz1mtCpM,9365
|
|
334
334
|
rucio/gateway/credential.py,sha256=_7mHbpH5Ufv4pZNZiq2vUlGDX9XndmlM-cZoje2uVJ0,2514
|
|
335
|
-
rucio/gateway/did.py,sha256=
|
|
336
|
-
rucio/gateway/dirac.py,sha256=
|
|
337
|
-
rucio/gateway/exporter.py,sha256=
|
|
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
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=
|
|
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
343
|
rucio/gateway/meta_conventions.py,sha256=538QdLNRjr98IXbrm3nf18GLbTiNdmf2KggAOW0jAlU,3691
|
|
344
344
|
rucio/gateway/permission.py,sha256=kccPOcwB2eYlj1fNah-wFlfWihCq2GqS1I8jiCK1OIc,2855
|
|
345
345
|
rucio/gateway/quarantined_replica.py,sha256=bLoB27Xf7-1XnJmvmIvmJbBgaWrVDUCW7zqX64nkETI,2778
|
|
346
|
-
rucio/gateway/replica.py,sha256=
|
|
347
|
-
rucio/gateway/request.py,sha256=
|
|
348
|
-
rucio/gateway/rse.py,sha256=
|
|
349
|
-
rucio/gateway/rule.py,sha256=
|
|
350
|
-
rucio/gateway/scope.py,sha256=
|
|
351
|
-
rucio/gateway/subscription.py,sha256=
|
|
346
|
+
rucio/gateway/replica.py,sha256=93Uiz4St_jXTowW9Z77sbUr71vkS0wtO-v8LyT3BMvo,25608
|
|
347
|
+
rucio/gateway/request.py,sha256=_xf12EnTx2D3odP5sQJ4m6yhfoOpW7IJMIiurd7tAEQ,16551
|
|
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
|
+
rucio/gateway/subscription.py,sha256=9ZkQPmH4uRO78dTD5KtfJRSPNdOEkbfS6gsRFntgnvo,10808
|
|
352
|
+
rucio/gateway/trace.py,sha256=rsLD4fx3O_mxQJY2RtVjHO9FpwMc9jzpmxNdi7VPGBk,1903
|
|
352
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
|
|
@@ -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=
|
|
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
|
|
401
402
|
rucio/web/rest/flaskapi/v1/credentials.py,sha256=C9eMS68t8yCCbdDtVQcNKj1UgvN4YOnMLyiOqCt-I6w,8097
|
|
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=
|
|
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
|
|
405
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=
|
|
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
|
|
411
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
|
-
rucio/web/rest/flaskapi/v1/redirect.py,sha256=
|
|
416
|
-
rucio/web/rest/flaskapi/v1/replicas.py,sha256=
|
|
417
|
-
rucio/web/rest/flaskapi/v1/requests.py,sha256=
|
|
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=
|
|
421
|
-
rucio/web/rest/flaskapi/v1/subscriptions.py,sha256=
|
|
422
|
-
rucio/web/rest/flaskapi/v1/traces.py,sha256=
|
|
416
|
+
rucio/web/rest/flaskapi/v1/redirect.py,sha256=zPq2A04M2lOaf_d4tvtzRDv7BADqlN13Cqy3TFpdpkQ,13527
|
|
417
|
+
rucio/web/rest/flaskapi/v1/replicas.py,sha256=DhX9rdpWA-9KYh-74jxYaqaa_s0R5CitTTS0jMHMYac,72723
|
|
418
|
+
rucio/web/rest/flaskapi/v1/requests.py,sha256=_tpZ9veMoTBuG_GITRqzXYDL6IPzP7mZwRCHKZtVM9k,49947
|
|
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
|
|
422
|
+
rucio/web/rest/flaskapi/v1/subscriptions.py,sha256=1s9HUz3OTqLTieu8zZegwBzbBLwo4sLhhlrtXjqfzAo,24638
|
|
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
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.4.0.data/data/rucio/requirements.server.txt,sha256=OLvhbLbJ_9J93IJg1_9D2jyRFteFXwd0j2qOLp7PMm0,5961
|
|
429
|
+
rucio-37.4.0.data/data/rucio/etc/alembic.ini.template,sha256=3eFdZvlBhtyYQcRCWGoehy4xfHe0xXqUCnxC91Neg9k,1772
|
|
430
|
+
rucio-37.4.0.data/data/rucio/etc/alembic_offline.ini.template,sha256=Zg39kR-_rmxU7X9BP5x68ccSx1UNMEOzOy2JC0D4O8c,1930
|
|
431
|
+
rucio-37.4.0.data/data/rucio/etc/globus-config.yml.template,sha256=ADOplXW10bO5KZVYRavwKgNaDR0VmdJ3gVbINeqoSIA,96
|
|
432
|
+
rucio-37.4.0.data/data/rucio/etc/ldap.cfg.template,sha256=2n-Exv81toCDZ6OzuNfMa71OoiLTdCSjWhkzCfSN3eM,806
|
|
433
|
+
rucio-37.4.0.data/data/rucio/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
|
|
434
|
+
rucio-37.4.0.data/data/rucio/etc/rucio.cfg.atlas.client.template,sha256=aHP1oX9m5yA8xVTTT2Hz6AyOYu92-Bcd5LF0i3AZRQw,1350
|
|
435
|
+
rucio-37.4.0.data/data/rucio/etc/rucio.cfg.template,sha256=wBFnaJrJmaYw3B6cZbsVzU-16pdyNJ8L86GZNJMp1Ng,8005
|
|
436
|
+
rucio-37.4.0.data/data/rucio/etc/rucio_multi_vo.cfg.template,sha256=sNlcfYDpTMEi7EKOtxiG4EIuhWtCPTP8YaJUDVAiaEE,6916
|
|
437
|
+
rucio-37.4.0.data/data/rucio/etc/mail_templates/rule_approval_request.tmpl,sha256=MTrB-IQEFE6TJnkwXjLxlUIc4afHmmrdQDC1S5og_dM,1210
|
|
438
|
+
rucio-37.4.0.data/data/rucio/etc/mail_templates/rule_approved_admin.tmpl,sha256=HxYNm7EKG9cMNkwUNPgZUC7o0Q9-DTINh1JtGtHOYUg,105
|
|
439
|
+
rucio-37.4.0.data/data/rucio/etc/mail_templates/rule_approved_user.tmpl,sha256=R4rssZ2hE8wcYPmAyc-UDpO5SPhMLZGNuYz6pvLjPVc,499
|
|
440
|
+
rucio-37.4.0.data/data/rucio/etc/mail_templates/rule_denied_admin.tmpl,sha256=feXJ3pZynlESBuPoe_y8amB84UQnLaP6SHtRk3cn7ZA,120
|
|
441
|
+
rucio-37.4.0.data/data/rucio/etc/mail_templates/rule_denied_user.tmpl,sha256=O054th_sVqZTFUeC3Gg_Qe8CrXQb-bxJhMaO48VMzzU,493
|
|
442
|
+
rucio-37.4.0.data/data/rucio/etc/mail_templates/rule_ok_notification.tmpl,sha256=EiT0KucfIKYnIN5XO9XawzZAJSVRYlza5sn8VloyBy4,546
|
|
443
|
+
rucio-37.4.0.data/data/rucio/tools/bootstrap.py,sha256=iI0Ue2mrRJdjFITm93DLHUBxDb_yfEoMUDpgO5Bqkhw,1259
|
|
444
|
+
rucio-37.4.0.data/data/rucio/tools/merge_rucio_configs.py,sha256=u62K1EcCGydM5nZA30zhlqWo4EX5N87b_MDkx5YfzVI,6163
|
|
445
|
+
rucio-37.4.0.data/data/rucio/tools/reset_database.py,sha256=ctvzWtRCQT69GNvmjDxtuSq8XM0B7VTdC0y-ALnHQsI,1351
|
|
446
|
+
rucio-37.4.0.data/scripts/rucio,sha256=xQRL_0mwut48KxOgWZexsSx9jfnaZHqSTAo7OnCHAgA,5081
|
|
447
|
+
rucio-37.4.0.data/scripts/rucio-abacus-account,sha256=C4ThueuI3gM3IVY9h1-T6xzkxFKMLmg2XTgSY7u7HXk,2806
|
|
448
|
+
rucio-37.4.0.data/scripts/rucio-abacus-collection-replica,sha256=HD2acGu8xBDAsKGCA7oLQvcY5SdT1mIQhSrREDV2n_M,1809
|
|
449
|
+
rucio-37.4.0.data/scripts/rucio-abacus-rse,sha256=3ws35qgLNh6FePNJMbPB2GDMvXw6rHGuxh5t8qVByNs,2553
|
|
450
|
+
rucio-37.4.0.data/scripts/rucio-admin,sha256=AhPO6-fAPviHObhB_Yi7GJXKfjpaH6m0RqxwctBeFlE,4229
|
|
451
|
+
rucio-37.4.0.data/scripts/rucio-atropos,sha256=o6KsmbjxbFgtKWl7gZbmBxBc3gYWax6FkkyfhUDmKbY,3171
|
|
452
|
+
rucio-37.4.0.data/scripts/rucio-auditor,sha256=SXjgj5V9utNNhFYDO7pa7hejpJORZVPPQkhxguUWNyk,6114
|
|
453
|
+
rucio-37.4.0.data/scripts/rucio-automatix,sha256=Lgud3OXVqUcBrPMtTAgSgPE5ZWSr74FBfBh0EoA9-E8,1996
|
|
454
|
+
rucio-37.4.0.data/scripts/rucio-bb8,sha256=TD8P3cMiDB_knZKZcGTQsy8aA7nPQXMC1TNPCyXrsSg,3089
|
|
455
|
+
rucio-37.4.0.data/scripts/rucio-cache-client,sha256=71-xm4MyxEDBlwnlviHsOgF0tx5EbADsPoVpj_DJDkA,5276
|
|
456
|
+
rucio-37.4.0.data/scripts/rucio-cache-consumer,sha256=5mCXRQWwAww3aabTMQh-U9HgHFkCJf3VpTHdk9R-rsU,1348
|
|
457
|
+
rucio-37.4.0.data/scripts/rucio-conveyor-finisher,sha256=mAexgdlj41UOwIQDZ5POU8gTRMuKzaOqhEww6cRV2rI,2333
|
|
458
|
+
rucio-37.4.0.data/scripts/rucio-conveyor-poller,sha256=z2C17x3n_eKdDrL1w1ePJpslkbOw2UMTh5BaOw-__Es,2825
|
|
459
|
+
rucio-37.4.0.data/scripts/rucio-conveyor-preparer,sha256=jlaBQbN8f081ekInQxn3QcNvrQQqedmdjQ6PeEp9JeU,1746
|
|
460
|
+
rucio-37.4.0.data/scripts/rucio-conveyor-receiver,sha256=Tgg6oXQp1G31ZK_7OKh6fLvcO3GdGi55b7xho2I9B74,1669
|
|
461
|
+
rucio-37.4.0.data/scripts/rucio-conveyor-stager,sha256=AaFzBHTahrv5--H16lbpUlXc64hijLL_myakuJ0V-oI,3371
|
|
462
|
+
rucio-37.4.0.data/scripts/rucio-conveyor-submitter,sha256=IMENh4rK8w6KbjZaOD8UJEv5BHdiFDjhfsHmZZK-T80,6738
|
|
463
|
+
rucio-37.4.0.data/scripts/rucio-conveyor-throttler,sha256=HS0vqTtMlrwUlsVM8a6aSHu0Kh4qkj52A3rqYuBy7bg,3845
|
|
464
|
+
rucio-37.4.0.data/scripts/rucio-dark-reaper,sha256=GmQAUNmmJKJjeuY7jbQIHvrbdQWRJSlqojMF_6h8j2Y,2532
|
|
465
|
+
rucio-37.4.0.data/scripts/rucio-dumper,sha256=zGfdsamPIUxbnDFDPM6FtqR1d3FH1AdC0gtH1JeLaxU,6729
|
|
466
|
+
rucio-37.4.0.data/scripts/rucio-follower,sha256=sXVEogQcoH0IxLy5qO-cjly-aVPCJ7uVcVsZtfyd2Pk,1400
|
|
467
|
+
rucio-37.4.0.data/scripts/rucio-hermes,sha256=i238hHzuv9JNUUPHNcOjnFQSs6BpPmz88t8ZFgS2GxI,1973
|
|
468
|
+
rucio-37.4.0.data/scripts/rucio-judge-cleaner,sha256=AKF8Jz67xRjiInuex003AXxTnOwTN2DQN38RS9jkrLY,4635
|
|
469
|
+
rucio-37.4.0.data/scripts/rucio-judge-evaluator,sha256=JrWN2ZatnUig5iWM7Ku4nEspXBjaucOrc8Ic55_OCzc,7458
|
|
470
|
+
rucio-37.4.0.data/scripts/rucio-judge-injector,sha256=d6na_n4H7njpUmJQg2Gc4KlbgK0_xuW5vw3waLReLTQ,1657
|
|
471
|
+
rucio-37.4.0.data/scripts/rucio-judge-repairer,sha256=QHeBySAn1bYS17z5dTfq8o81uEUpqhGVUqe6KWZBVmQ,1661
|
|
472
|
+
rucio-37.4.0.data/scripts/rucio-kronos,sha256=WQQ0izYfdVvmfaaRkqSf4mejL-U86OL5mD5v1t2p6Eg,1770
|
|
473
|
+
rucio-37.4.0.data/scripts/rucio-minos,sha256=-utVl82-xd7zxp4yy1udqCm_MehRP7pU5WDdJ7EFuac,2246
|
|
474
|
+
rucio-37.4.0.data/scripts/rucio-minos-temporary-expiration,sha256=E9G_h__cJNWuEcFDoeBFjzCHqp1swW-ff67M2WpZ3eg,1983
|
|
475
|
+
rucio-37.4.0.data/scripts/rucio-necromancer,sha256=axQkxvue4PyLv5zQLyEtarTA1JgQIDJYDdLqEc7I4Ww,5612
|
|
476
|
+
rucio-37.4.0.data/scripts/rucio-oauth-manager,sha256=qqFyI_L-bHg4R6a3OSgL_RsmosuODykX7HM-u0Mr-nY,2776
|
|
477
|
+
rucio-37.4.0.data/scripts/rucio-reaper,sha256=c0aMDs0N0ubKcl5T5aHunqaBcmIIj6WmERReKTS9di4,3773
|
|
478
|
+
rucio-37.4.0.data/scripts/rucio-replica-recoverer,sha256=_LoVZbOxENNsmOSTOYW0g1fXYl19j8o5F6zmgDzIzmE,19002
|
|
479
|
+
rucio-37.4.0.data/scripts/rucio-rse-decommissioner,sha256=zXXTq1lPzoI5R012fGWrxXi9VcHZNIfB85EefwQN1kw,2337
|
|
480
|
+
rucio-37.4.0.data/scripts/rucio-storage-consistency-actions,sha256=Mb4GUO1kP7HdiCORhHkYfmfZIhJKp88RBr8TEC19HXo,3906
|
|
481
|
+
rucio-37.4.0.data/scripts/rucio-transmogrifier,sha256=i17F1FTrxharmCWVZpylXSH2Xow2KaxkTr2jzDFn8Rc,3350
|
|
482
|
+
rucio-37.4.0.data/scripts/rucio-undertaker,sha256=HQ-irdSrsftrsS8NdVjGhxYlFE4hDVo9bh32jTwNCCc,2706
|
|
483
|
+
rucio-37.4.0.dist-info/licenses/AUTHORS.rst,sha256=c4MEJjLcFZ5euNtPA7jGFL26javbFKpWTvxBoIs_l6w,4726
|
|
484
|
+
rucio-37.4.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
485
|
+
rucio-37.4.0.dist-info/METADATA,sha256=Ddf75Id6-Flu3llrIxs0doQtVerPbU86LQGK3cZPGZQ,2957
|
|
486
|
+
rucio-37.4.0.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
487
|
+
rucio-37.4.0.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
|
|
488
|
+
rucio-37.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl
RENAMED
|
File without changes
|
{rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl
RENAMED
|
File without changes
|
{rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl
RENAMED
|
File without changes
|
{rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl
RENAMED
|
File without changes
|
|
File without changes
|
{rucio-37.2.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_ok_notification.tmpl
RENAMED
|
File without changes
|
|
File without changes
|