rucio 37.2.0__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.

Files changed (95) hide show
  1. rucio/common/plugins.py +1 -1
  2. rucio/core/did.py +2 -3
  3. rucio/core/replica.py +1 -1
  4. rucio/db/sqla/util.py +1 -1
  5. rucio/gateway/authentication.py +58 -88
  6. rucio/gateway/config.py +63 -75
  7. rucio/gateway/did.py +245 -329
  8. rucio/gateway/dirac.py +33 -34
  9. rucio/gateway/exporter.py +27 -30
  10. rucio/gateway/importer.py +12 -14
  11. rucio/gateway/lifetime_exception.py +16 -24
  12. rucio/gateway/lock.py +27 -40
  13. rucio/gateway/replica.py +223 -226
  14. rucio/gateway/rse.py +191 -218
  15. rucio/gateway/rule.py +115 -146
  16. rucio/gateway/scope.py +18 -25
  17. rucio/gateway/trace.py +48 -0
  18. rucio/vcsversion.py +3 -3
  19. rucio/web/rest/flaskapi/v1/accounts.py +2 -2
  20. rucio/web/rest/flaskapi/v1/auth.py +15 -0
  21. rucio/web/rest/flaskapi/v1/common.py +3 -0
  22. rucio/web/rest/flaskapi/v1/config.py +7 -7
  23. rucio/web/rest/flaskapi/v1/dids.py +55 -55
  24. rucio/web/rest/flaskapi/v1/dirac.py +2 -2
  25. rucio/web/rest/flaskapi/v1/export.py +1 -1
  26. rucio/web/rest/flaskapi/v1/import.py +1 -1
  27. rucio/web/rest/flaskapi/v1/lifetime_exceptions.py +5 -5
  28. rucio/web/rest/flaskapi/v1/locks.py +4 -4
  29. rucio/web/rest/flaskapi/v1/main.py +17 -10
  30. rucio/web/rest/flaskapi/v1/replicas.py +29 -28
  31. rucio/web/rest/flaskapi/v1/rses.py +37 -37
  32. rucio/web/rest/flaskapi/v1/rules.py +15 -15
  33. rucio/web/rest/flaskapi/v1/scopes.py +3 -3
  34. rucio/web/rest/flaskapi/v1/traces.py +75 -77
  35. {rucio-37.2.0.dist-info → rucio-37.3.0.dist-info}/METADATA +1 -1
  36. {rucio-37.2.0.dist-info → rucio-37.3.0.dist-info}/RECORD +95 -94
  37. {rucio-37.2.0.dist-info → rucio-37.3.0.dist-info}/WHEEL +1 -1
  38. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/alembic.ini.template +0 -0
  39. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/alembic_offline.ini.template +0 -0
  40. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/globus-config.yml.template +0 -0
  41. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/ldap.cfg.template +0 -0
  42. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl +0 -0
  43. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl +0 -0
  44. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl +0 -0
  45. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl +0 -0
  46. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_denied_user.tmpl +0 -0
  47. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/mail_templates/rule_ok_notification.tmpl +0 -0
  48. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/rse-accounts.cfg.template +0 -0
  49. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/rucio.cfg.atlas.client.template +0 -0
  50. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/rucio.cfg.template +0 -0
  51. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/etc/rucio_multi_vo.cfg.template +0 -0
  52. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/requirements.server.txt +0 -0
  53. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/tools/bootstrap.py +0 -0
  54. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/tools/merge_rucio_configs.py +0 -0
  55. {rucio-37.2.0.data → rucio-37.3.0.data}/data/rucio/tools/reset_database.py +0 -0
  56. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio +0 -0
  57. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-abacus-account +0 -0
  58. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-abacus-collection-replica +0 -0
  59. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-abacus-rse +0 -0
  60. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-admin +0 -0
  61. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-atropos +0 -0
  62. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-auditor +0 -0
  63. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-automatix +0 -0
  64. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-bb8 +0 -0
  65. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-cache-client +0 -0
  66. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-cache-consumer +0 -0
  67. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-conveyor-finisher +0 -0
  68. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-conveyor-poller +0 -0
  69. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-conveyor-preparer +0 -0
  70. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-conveyor-receiver +0 -0
  71. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-conveyor-stager +0 -0
  72. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-conveyor-submitter +0 -0
  73. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-conveyor-throttler +0 -0
  74. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-dark-reaper +0 -0
  75. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-dumper +0 -0
  76. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-follower +0 -0
  77. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-hermes +0 -0
  78. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-judge-cleaner +0 -0
  79. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-judge-evaluator +0 -0
  80. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-judge-injector +0 -0
  81. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-judge-repairer +0 -0
  82. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-kronos +0 -0
  83. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-minos +0 -0
  84. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-minos-temporary-expiration +0 -0
  85. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-necromancer +0 -0
  86. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-oauth-manager +0 -0
  87. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-reaper +0 -0
  88. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-replica-recoverer +0 -0
  89. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-rse-decommissioner +0 -0
  90. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-storage-consistency-actions +0 -0
  91. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-transmogrifier +0 -0
  92. {rucio-37.2.0.data → rucio-37.3.0.data}/scripts/rucio-undertaker +0 -0
  93. {rucio-37.2.0.dist-info → rucio-37.3.0.dist-info}/licenses/AUTHORS.rst +0 -0
  94. {rucio-37.2.0.dist-info → rucio-37.3.0.dist-info}/licenses/LICENSE +0 -0
  95. {rucio-37.2.0.dist-info → rucio-37.3.0.dist-info}/top_level.txt +0 -0
@@ -46,7 +46,7 @@ class Scope(ErrorHandlingMethodView):
46
46
  406:
47
47
  description: Not acceptable
48
48
  """
49
- return jsonify(list_scopes(vo=request.environ.get('vo')))
49
+ return jsonify(list_scopes(vo=request.environ['vo']))
50
50
 
51
51
  def post(self, account, scope):
52
52
  """
@@ -84,7 +84,7 @@ class Scope(ErrorHandlingMethodView):
84
84
  description: Scope already exists
85
85
  """
86
86
  try:
87
- add_scope(scope, account, issuer=request.environ.get('issuer'), vo=request.environ.get('vo'))
87
+ add_scope(scope, account, issuer=request.environ['issuer'], vo=request.environ['vo'])
88
88
  except Duplicate as error:
89
89
  return generate_http_error_flask(409, error)
90
90
  except AccountNotFound as error:
@@ -129,7 +129,7 @@ class AccountScopeList(ErrorHandlingMethodView):
129
129
  description: Not acceptable
130
130
  """
131
131
  try:
132
- scopes = get_scopes(account, vo=request.environ.get('vo'))
132
+ scopes = get_scopes(account, vo=request.environ['vo'])
133
133
  except AccountNotFound as error:
134
134
  return generate_http_error_flask(404, error)
135
135
 
@@ -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 datetime
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.core.trace import trace
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
- summary: Trace
78
- description: Trace endpoint used by the pilot and CLI clients to post data access information.
79
- tags:
80
- - Trace
81
- parameters:
82
- - name: X-Forwarded-For
83
- in: header
84
- schema:
85
- type: string
86
- requestBody:
87
- content:
88
- application/json:
89
- schema:
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
- description: A single trace object.
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
- description: A list of trace objects.
97
- responses:
98
- 201:
99
- description: OK
100
- 400:
101
- description: Cannot decode json data.
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
- req_body: str = request.get_data(as_text=True)
105
- payload: Union[list, dict, None] = json.loads(req_body) if req_body else None
106
-
107
- if payload is None:
108
- return (
109
- "Invalid JSON data. Please provide a single trace as a JSON object or a list of trace objects.",
110
- 400,
111
- headers,
112
- )
113
-
114
- if isinstance(payload, list):
115
- for item in payload:
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():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rucio
3
- Version: 37.2.0
3
+ Version: 37.3.0
4
4
  Summary: Rucio Package
5
5
  Home-page: https://rucio.cern.ch/
6
6
  Author: Rucio
@@ -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=1QLGzI9aecOoeru4NFiVYESuyOrJF78DFMRx9OiQz-w,244
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,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=O6Snuhm2Tf2lyTA3cCBzSJB27RX1MY_r9mEAccrRCj4,7283
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=Jj5kEHAboiEfpYn5p0cP5JWI1u5OV7RjNk6ywttX9nw,116310
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=VrU7LY1EisJjsx1nyo22vjq9u2cJTCfNVGfRgxaYxDE,185491
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
@@ -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=eynMB_GsoWTO6XJfIsoeUFzJqoyRGXcgSSY6B8QQBek,22583
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=TMNNkUq_L_I6FOD0QsFE6Pr9tqvaBwVJ1T_NiLMzpvU,14308
333
- rucio/gateway/config.py,sha256=xYS2ro5YK_7nFIphLQYKaYCJ2saFx_q72xuwBhmlMHA,9717
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=VMEaUWHCQFOYeRV5WlXEbgg4T-8JbW55LGi-veMnhHs,32947
336
- rucio/gateway/dirac.py,sha256=p_pcjiG0KLvMrO1viDNcAME8xCl48QTqYJ87mL6etAQ,3513
337
- rucio/gateway/exporter.py,sha256=O-ARpt4eO4PkoKE0XzzZmLOyfBwxLYS8CDdY2XT-SHU,2217
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=YTqwUI_FqXtIuL8bVGfjl7Zw3exx4gMBCAXS02gfPQA,1841
341
- rucio/gateway/lifetime_exception.py,sha256=j8PqIuj0B0DcXC_nBctJPj0b6EbDLZyCk-FX7WkPb70,4220
342
- rucio/gateway/lock.py,sha256=l99ZjjWTfYFLi0LLsz2Lx_Wait-6GhCoorV1nsAoACA,4991
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=GiXDI4HIg4kAs3L8obAhL21rTt5-FRJ9kjUbT9N0_e8,23129
346
+ rucio/gateway/replica.py,sha256=mPvWJoWRMUkQsoYkorwd83uGrOSlc7AefH_IE5nGqDE,23422
347
347
  rucio/gateway/request.py,sha256=IIWI4vORDb9RPN4qrzMDwUhW53VWd85mXQ41XpX962k,12431
348
- rucio/gateway/rse.py,sha256=vQUYY6e0wrj7-XhGf0b2WLrRWICSI-20MhoHgwsGgfw,24725
349
- rucio/gateway/rule.py,sha256=_zaPTGlOLU7BEUNN_w3XwXG7HQn9loiigqcw6lKKDco,18074
350
- rucio/gateway/scope.py,sha256=kQLwtHkE1aSTiIpNSMmNdtzOGBtVeMaiZBx-VIcfqCU,3279
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/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=FV2Y3dCFyo8mp9_bikmzOq3-IcFPpMCNHyn3-PglVww,38205
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=oL1TriBaZhvgk0SDqbt3wRFseHQGKnMVT9W24jCBNiY,62639
399
- rucio/web/rest/flaskapi/v1/common.py,sha256=GE_3g29IQKhRV2m03M1OJ_IpLHgGOlhIT7Qbd60Gd84,17920
400
- rucio/web/rest/flaskapi/v1/config.py,sha256=D2FY0lz4u0f7tfnqEvJ3kq7Z9Vp46KlAJ68nPeolYMw,10147
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=Ofmcf4gSXUj0OwpKcOyMxYLIWeLyXTAlBb73yYJQcPU,81484
403
- rucio/web/rest/flaskapi/v1/dirac.py,sha256=jTFotoHqnDCs__XT0gns5YKhrqaazV1qf-8W4RZfYN4,4710
404
- rucio/web/rest/flaskapi/v1/export.py,sha256=Kjh8qIODIzgjz-6jiC2aOTRrC2oHR4dTJ0MOabjIiB4,2660
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=wqsges6E-n2B5uZJxjqmOyrhfSQhEPD9GmBF9PLQetE,5263
408
- rucio/web/rest/flaskapi/v1/lifetime_exceptions.py,sha256=ms-5ze74UErRIO5Z2_xd1H_KF7wYGtIDNVVeft7OqCk,12013
409
- rucio/web/rest/flaskapi/v1/locks.py,sha256=0rXKZV0Kabhf1Q35HDnhqzHfzHI0JTXavqKLYATGAW8,12994
410
- rucio/web/rest/flaskapi/v1/main.py,sha256=tXOBicArjXcdmYXFIlMuMqtbrcK1C2r22cwtSu1mJmo,2860
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
416
  rucio/web/rest/flaskapi/v1/redirect.py,sha256=5LBpKZ6jU87FU2lgLv9qrnhWA0XmIVMO4BmNweEErf4,13571
416
- rucio/web/rest/flaskapi/v1/replicas.py,sha256=5OJvS-wgTvg7u9jHVp-FUKqzdCgqayOSUYNzndH-hTc,72765
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=SAu1OuAupHusw-MRAavURZZv8X6geTg4NbQmWinpgBI,82234
419
- rucio/web/rest/flaskapi/v1/rules.py,sha256=GtS_bi5RLsWrKWwMupyFywRiRXxTJTGp6gWa8O0KRmY,32197
420
- rucio/web/rest/flaskapi/v1/scopes.py,sha256=og11d0hDr76TxPK67RLxK125a3qW8rdqrrL_1QBeH3Q,5072
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=vn8B9xqkPP60ep5QcfWhKoDu2IAFC3kOaeHaO3bYFrk,4602
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.2.0.data/data/rucio/requirements.server.txt,sha256=OLvhbLbJ_9J93IJg1_9D2jyRFteFXwd0j2qOLp7PMm0,5961
428
- rucio-37.2.0.data/data/rucio/etc/alembic.ini.template,sha256=3eFdZvlBhtyYQcRCWGoehy4xfHe0xXqUCnxC91Neg9k,1772
429
- rucio-37.2.0.data/data/rucio/etc/alembic_offline.ini.template,sha256=Zg39kR-_rmxU7X9BP5x68ccSx1UNMEOzOy2JC0D4O8c,1930
430
- rucio-37.2.0.data/data/rucio/etc/globus-config.yml.template,sha256=ADOplXW10bO5KZVYRavwKgNaDR0VmdJ3gVbINeqoSIA,96
431
- rucio-37.2.0.data/data/rucio/etc/ldap.cfg.template,sha256=2n-Exv81toCDZ6OzuNfMa71OoiLTdCSjWhkzCfSN3eM,806
432
- rucio-37.2.0.data/data/rucio/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
433
- rucio-37.2.0.data/data/rucio/etc/rucio.cfg.atlas.client.template,sha256=aHP1oX9m5yA8xVTTT2Hz6AyOYu92-Bcd5LF0i3AZRQw,1350
434
- rucio-37.2.0.data/data/rucio/etc/rucio.cfg.template,sha256=iqtbivJDlngApmuJDiOLDQPRlxDRfljpLmiT_tzlUrM,8081
435
- rucio-37.2.0.data/data/rucio/etc/rucio_multi_vo.cfg.template,sha256=NbvzcC9EZm0HpmjIC60KMPwOHHn9ScM5Twb4c6MoOHc,6992
436
- rucio-37.2.0.data/data/rucio/etc/mail_templates/rule_approval_request.tmpl,sha256=MTrB-IQEFE6TJnkwXjLxlUIc4afHmmrdQDC1S5og_dM,1210
437
- rucio-37.2.0.data/data/rucio/etc/mail_templates/rule_approved_admin.tmpl,sha256=HxYNm7EKG9cMNkwUNPgZUC7o0Q9-DTINh1JtGtHOYUg,105
438
- rucio-37.2.0.data/data/rucio/etc/mail_templates/rule_approved_user.tmpl,sha256=R4rssZ2hE8wcYPmAyc-UDpO5SPhMLZGNuYz6pvLjPVc,499
439
- rucio-37.2.0.data/data/rucio/etc/mail_templates/rule_denied_admin.tmpl,sha256=feXJ3pZynlESBuPoe_y8amB84UQnLaP6SHtRk3cn7ZA,120
440
- rucio-37.2.0.data/data/rucio/etc/mail_templates/rule_denied_user.tmpl,sha256=O054th_sVqZTFUeC3Gg_Qe8CrXQb-bxJhMaO48VMzzU,493
441
- rucio-37.2.0.data/data/rucio/etc/mail_templates/rule_ok_notification.tmpl,sha256=EiT0KucfIKYnIN5XO9XawzZAJSVRYlza5sn8VloyBy4,546
442
- rucio-37.2.0.data/data/rucio/tools/bootstrap.py,sha256=iI0Ue2mrRJdjFITm93DLHUBxDb_yfEoMUDpgO5Bqkhw,1259
443
- rucio-37.2.0.data/data/rucio/tools/merge_rucio_configs.py,sha256=u62K1EcCGydM5nZA30zhlqWo4EX5N87b_MDkx5YfzVI,6163
444
- rucio-37.2.0.data/data/rucio/tools/reset_database.py,sha256=ctvzWtRCQT69GNvmjDxtuSq8XM0B7VTdC0y-ALnHQsI,1351
445
- rucio-37.2.0.data/scripts/rucio,sha256=xQRL_0mwut48KxOgWZexsSx9jfnaZHqSTAo7OnCHAgA,5081
446
- rucio-37.2.0.data/scripts/rucio-abacus-account,sha256=C4ThueuI3gM3IVY9h1-T6xzkxFKMLmg2XTgSY7u7HXk,2806
447
- rucio-37.2.0.data/scripts/rucio-abacus-collection-replica,sha256=HD2acGu8xBDAsKGCA7oLQvcY5SdT1mIQhSrREDV2n_M,1809
448
- rucio-37.2.0.data/scripts/rucio-abacus-rse,sha256=3ws35qgLNh6FePNJMbPB2GDMvXw6rHGuxh5t8qVByNs,2553
449
- rucio-37.2.0.data/scripts/rucio-admin,sha256=AhPO6-fAPviHObhB_Yi7GJXKfjpaH6m0RqxwctBeFlE,4229
450
- rucio-37.2.0.data/scripts/rucio-atropos,sha256=o6KsmbjxbFgtKWl7gZbmBxBc3gYWax6FkkyfhUDmKbY,3171
451
- rucio-37.2.0.data/scripts/rucio-auditor,sha256=SXjgj5V9utNNhFYDO7pa7hejpJORZVPPQkhxguUWNyk,6114
452
- rucio-37.2.0.data/scripts/rucio-automatix,sha256=Lgud3OXVqUcBrPMtTAgSgPE5ZWSr74FBfBh0EoA9-E8,1996
453
- rucio-37.2.0.data/scripts/rucio-bb8,sha256=TD8P3cMiDB_knZKZcGTQsy8aA7nPQXMC1TNPCyXrsSg,3089
454
- rucio-37.2.0.data/scripts/rucio-cache-client,sha256=71-xm4MyxEDBlwnlviHsOgF0tx5EbADsPoVpj_DJDkA,5276
455
- rucio-37.2.0.data/scripts/rucio-cache-consumer,sha256=5mCXRQWwAww3aabTMQh-U9HgHFkCJf3VpTHdk9R-rsU,1348
456
- rucio-37.2.0.data/scripts/rucio-conveyor-finisher,sha256=mAexgdlj41UOwIQDZ5POU8gTRMuKzaOqhEww6cRV2rI,2333
457
- rucio-37.2.0.data/scripts/rucio-conveyor-poller,sha256=z2C17x3n_eKdDrL1w1ePJpslkbOw2UMTh5BaOw-__Es,2825
458
- rucio-37.2.0.data/scripts/rucio-conveyor-preparer,sha256=jlaBQbN8f081ekInQxn3QcNvrQQqedmdjQ6PeEp9JeU,1746
459
- rucio-37.2.0.data/scripts/rucio-conveyor-receiver,sha256=Tgg6oXQp1G31ZK_7OKh6fLvcO3GdGi55b7xho2I9B74,1669
460
- rucio-37.2.0.data/scripts/rucio-conveyor-stager,sha256=AaFzBHTahrv5--H16lbpUlXc64hijLL_myakuJ0V-oI,3371
461
- rucio-37.2.0.data/scripts/rucio-conveyor-submitter,sha256=IMENh4rK8w6KbjZaOD8UJEv5BHdiFDjhfsHmZZK-T80,6738
462
- rucio-37.2.0.data/scripts/rucio-conveyor-throttler,sha256=HS0vqTtMlrwUlsVM8a6aSHu0Kh4qkj52A3rqYuBy7bg,3845
463
- rucio-37.2.0.data/scripts/rucio-dark-reaper,sha256=GmQAUNmmJKJjeuY7jbQIHvrbdQWRJSlqojMF_6h8j2Y,2532
464
- rucio-37.2.0.data/scripts/rucio-dumper,sha256=zGfdsamPIUxbnDFDPM6FtqR1d3FH1AdC0gtH1JeLaxU,6729
465
- rucio-37.2.0.data/scripts/rucio-follower,sha256=sXVEogQcoH0IxLy5qO-cjly-aVPCJ7uVcVsZtfyd2Pk,1400
466
- rucio-37.2.0.data/scripts/rucio-hermes,sha256=i238hHzuv9JNUUPHNcOjnFQSs6BpPmz88t8ZFgS2GxI,1973
467
- rucio-37.2.0.data/scripts/rucio-judge-cleaner,sha256=AKF8Jz67xRjiInuex003AXxTnOwTN2DQN38RS9jkrLY,4635
468
- rucio-37.2.0.data/scripts/rucio-judge-evaluator,sha256=JrWN2ZatnUig5iWM7Ku4nEspXBjaucOrc8Ic55_OCzc,7458
469
- rucio-37.2.0.data/scripts/rucio-judge-injector,sha256=d6na_n4H7njpUmJQg2Gc4KlbgK0_xuW5vw3waLReLTQ,1657
470
- rucio-37.2.0.data/scripts/rucio-judge-repairer,sha256=QHeBySAn1bYS17z5dTfq8o81uEUpqhGVUqe6KWZBVmQ,1661
471
- rucio-37.2.0.data/scripts/rucio-kronos,sha256=WQQ0izYfdVvmfaaRkqSf4mejL-U86OL5mD5v1t2p6Eg,1770
472
- rucio-37.2.0.data/scripts/rucio-minos,sha256=-utVl82-xd7zxp4yy1udqCm_MehRP7pU5WDdJ7EFuac,2246
473
- rucio-37.2.0.data/scripts/rucio-minos-temporary-expiration,sha256=E9G_h__cJNWuEcFDoeBFjzCHqp1swW-ff67M2WpZ3eg,1983
474
- rucio-37.2.0.data/scripts/rucio-necromancer,sha256=axQkxvue4PyLv5zQLyEtarTA1JgQIDJYDdLqEc7I4Ww,5612
475
- rucio-37.2.0.data/scripts/rucio-oauth-manager,sha256=qqFyI_L-bHg4R6a3OSgL_RsmosuODykX7HM-u0Mr-nY,2776
476
- rucio-37.2.0.data/scripts/rucio-reaper,sha256=c0aMDs0N0ubKcl5T5aHunqaBcmIIj6WmERReKTS9di4,3773
477
- rucio-37.2.0.data/scripts/rucio-replica-recoverer,sha256=_LoVZbOxENNsmOSTOYW0g1fXYl19j8o5F6zmgDzIzmE,19002
478
- rucio-37.2.0.data/scripts/rucio-rse-decommissioner,sha256=zXXTq1lPzoI5R012fGWrxXi9VcHZNIfB85EefwQN1kw,2337
479
- rucio-37.2.0.data/scripts/rucio-storage-consistency-actions,sha256=Mb4GUO1kP7HdiCORhHkYfmfZIhJKp88RBr8TEC19HXo,3906
480
- rucio-37.2.0.data/scripts/rucio-transmogrifier,sha256=i17F1FTrxharmCWVZpylXSH2Xow2KaxkTr2jzDFn8Rc,3350
481
- rucio-37.2.0.data/scripts/rucio-undertaker,sha256=HQ-irdSrsftrsS8NdVjGhxYlFE4hDVo9bh32jTwNCCc,2706
482
- rucio-37.2.0.dist-info/licenses/AUTHORS.rst,sha256=c4MEJjLcFZ5euNtPA7jGFL26javbFKpWTvxBoIs_l6w,4726
483
- rucio-37.2.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
484
- rucio-37.2.0.dist-info/METADATA,sha256=615-lyRwy7NEbOLxsQYCMRk407UKU0I3itfp9RqBP1E,2957
485
- rucio-37.2.0.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
486
- rucio-37.2.0.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
487
- rucio-37.2.0.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.1.0)
2
+ Generator: setuptools (80.4.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
File without changes