rucio 37.7.1__py3-none-any.whl → 38.0.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/alembicrevision.py +1 -1
- rucio/cli/bin_legacy/rucio.py +51 -107
- rucio/cli/bin_legacy/rucio_admin.py +26 -26
- rucio/cli/command.py +1 -0
- rucio/cli/did.py +2 -2
- rucio/cli/opendata.py +132 -0
- rucio/cli/replica.py +15 -5
- rucio/cli/rule.py +7 -2
- rucio/cli/scope.py +3 -2
- rucio/cli/utils.py +28 -4
- rucio/client/baseclient.py +9 -1
- rucio/client/client.py +2 -0
- rucio/client/diracclient.py +73 -12
- rucio/client/opendataclient.py +249 -0
- rucio/client/subscriptionclient.py +30 -0
- rucio/client/uploadclient.py +10 -13
- rucio/common/constants.py +4 -1
- rucio/common/exception.py +55 -0
- rucio/common/plugins.py +45 -8
- rucio/common/schema/generic.py +5 -3
- rucio/common/schema/generic_multi_vo.py +4 -2
- rucio/common/types.py +8 -7
- rucio/common/utils.py +176 -11
- rucio/core/dirac.py +5 -5
- rucio/core/opendata.py +744 -0
- rucio/core/rule.py +63 -8
- rucio/core/transfer.py +1 -1
- rucio/daemons/common.py +1 -1
- rucio/daemons/conveyor/finisher.py +2 -2
- rucio/daemons/conveyor/poller.py +2 -2
- rucio/daemons/conveyor/preparer.py +1 -1
- rucio/daemons/conveyor/submitter.py +2 -2
- rucio/daemons/conveyor/throttler.py +1 -1
- rucio/db/sqla/constants.py +6 -0
- rucio/db/sqla/migrate_repo/versions/a62db546a1f1_opendata_initial_model.py +85 -0
- rucio/db/sqla/models.py +69 -0
- rucio/db/sqla/session.py +8 -1
- rucio/db/sqla/util.py +2 -2
- rucio/gateway/dirac.py +1 -1
- rucio/gateway/opendata.py +190 -0
- rucio/gateway/subscription.py +5 -3
- rucio/rse/protocols/protocol.py +9 -5
- rucio/rse/translation.py +17 -6
- rucio/tests/common.py +64 -12
- rucio/transfertool/fts3.py +1 -0
- rucio/transfertool/fts3_plugins.py +6 -1
- rucio/vcsversion.py +4 -4
- rucio/web/rest/flaskapi/v1/auth.py +11 -2
- rucio/web/rest/flaskapi/v1/common.py +34 -14
- rucio/web/rest/flaskapi/v1/config.py +1 -1
- rucio/web/rest/flaskapi/v1/dids.py +447 -160
- rucio/web/rest/flaskapi/v1/heartbeats.py +1 -1
- rucio/web/rest/flaskapi/v1/identities.py +1 -1
- rucio/web/rest/flaskapi/v1/lifetime_exceptions.py +1 -1
- rucio/web/rest/flaskapi/v1/locks.py +1 -1
- rucio/web/rest/flaskapi/v1/main.py +3 -7
- rucio/web/rest/flaskapi/v1/meta_conventions.py +1 -16
- rucio/web/rest/flaskapi/v1/nongrid_traces.py +1 -1
- rucio/web/rest/flaskapi/v1/opendata.py +391 -0
- rucio/web/rest/flaskapi/v1/opendata_public.py +146 -0
- rucio/web/rest/flaskapi/v1/requests.py +1 -1
- rucio/web/rest/flaskapi/v1/rses.py +1 -1
- rucio/web/rest/flaskapi/v1/rules.py +1 -1
- rucio/web/rest/flaskapi/v1/scopes.py +1 -1
- rucio/web/rest/flaskapi/v1/subscriptions.py +6 -9
- rucio/web/rest/flaskapi/v1/traces.py +1 -1
- rucio/web/rest/flaskapi/v1/vos.py +1 -1
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/alembic.ini.template +1 -1
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/alembic_offline.ini.template +1 -1
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/rucio.cfg.template +2 -2
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/rucio_multi_vo.cfg.template +3 -3
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/requirements.server.txt +6 -3
- rucio-38.0.0.data/data/rucio/tools/reset_database.py +87 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio +2 -1
- {rucio-37.7.1.dist-info → rucio-38.0.0.dist-info}/METADATA +37 -36
- {rucio-37.7.1.dist-info → rucio-38.0.0.dist-info}/RECORD +128 -122
- {rucio-37.7.1.dist-info → rucio-38.0.0.dist-info}/licenses/AUTHORS.rst +1 -0
- rucio/client/fileclient.py +0 -57
- rucio-37.7.1.data/data/rucio/tools/reset_database.py +0 -40
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/globus-config.yml.template +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/ldap.cfg.template +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/mail_templates/rule_denied_user.tmpl +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/mail_templates/rule_ok_notification.tmpl +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/rse-accounts.cfg.template +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/rucio.cfg.atlas.client.template +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/tools/bootstrap.py +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/tools/merge_rucio_configs.py +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-abacus-account +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-abacus-collection-replica +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-abacus-rse +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-admin +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-atropos +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-auditor +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-automatix +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-bb8 +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-cache-client +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-cache-consumer +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-conveyor-finisher +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-conveyor-poller +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-conveyor-preparer +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-conveyor-receiver +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-conveyor-stager +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-conveyor-submitter +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-conveyor-throttler +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-dark-reaper +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-dumper +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-follower +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-hermes +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-judge-cleaner +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-judge-evaluator +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-judge-injector +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-judge-repairer +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-kronos +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-minos +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-minos-temporary-expiration +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-necromancer +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-oauth-manager +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-reaper +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-replica-recoverer +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-rse-decommissioner +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-storage-consistency-actions +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-transmogrifier +0 -0
- {rucio-37.7.1.data → rucio-38.0.0.data}/scripts/rucio-undertaker +0 -0
- {rucio-37.7.1.dist-info → rucio-38.0.0.dist-info}/WHEEL +0 -0
- {rucio-37.7.1.dist-info → rucio-38.0.0.dist-info}/licenses/LICENSE +0 -0
- {rucio-37.7.1.dist-info → rucio-38.0.0.dist-info}/top_level.txt +0 -0
|
@@ -1,40 +1,41 @@
|
|
|
1
1
|
rucio/__init__.py,sha256=Y7cPPlHVQPFyN8bSPFC0W3WViEdONr5g_qwBub5rufE,660
|
|
2
|
-
rucio/alembicrevision.py,sha256=
|
|
3
|
-
rucio/vcsversion.py,sha256=
|
|
2
|
+
rucio/alembicrevision.py,sha256=9tnjQLFkTpUEcZqcw-ojWpt4Wbg-5OtMJ0CfjPc0wX8,690
|
|
3
|
+
rucio/vcsversion.py,sha256=9LdA7CRrfjo2zGNdpr0a9ZYCpDUx2BKvfMhv9QMILvE,240
|
|
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
|
|
7
|
-
rucio/cli/command.py,sha256=
|
|
7
|
+
rucio/cli/command.py,sha256=dr9bhugorgc2kX-JsdrRsq9Yfh92sYwaALB7CrX6PNI,10835
|
|
8
8
|
rucio/cli/config.py,sha256=L7vhzAyUVKZBWKKDvrLl7zCei8O6kDyzX_x_-p-vk9M,2706
|
|
9
|
-
rucio/cli/did.py,sha256=
|
|
9
|
+
rucio/cli/did.py,sha256=68LZ7CESYag6Uob39wNob-AgGmASIPyZSz33LZUkopk,9188
|
|
10
10
|
rucio/cli/download.py,sha256=nltAf8nm8P6nrfIu0CUveY4YM6oL5nSR3w6yS4qBbw0,6248
|
|
11
11
|
rucio/cli/lifetime_exception.py,sha256=joi9HdaiYP_g3115IR_ImX7oFlEg1xbSaK-IzmoIVcY,1498
|
|
12
|
-
rucio/cli/
|
|
12
|
+
rucio/cli/opendata.py,sha256=wnfzcVBpCmkA9WQFqNsqtMuT-2QRl1LHBjLBgm_c4AU,4741
|
|
13
|
+
rucio/cli/replica.py,sha256=ZeknO6aKOambwe7lJGWcI_YAflz1-oMYBSZTYvMVIe0,8657
|
|
13
14
|
rucio/cli/rse.py,sha256=J2IjCGUzvv9U0swFcU0ykZ1pYweHqTlXwmpGfSI-VgE,11490
|
|
14
|
-
rucio/cli/rule.py,sha256=
|
|
15
|
-
rucio/cli/scope.py,sha256=
|
|
15
|
+
rucio/cli/rule.py,sha256=H_Yw8hx_DiqX_twEtgEY0x2AkftsRyLboMaXv_Zc6Ac,9090
|
|
16
|
+
rucio/cli/scope.py,sha256=jzP9SK4IDKUrjWzE2Gs34I_gQpXnqmsBd6LbLuJI3QM,1698
|
|
16
17
|
rucio/cli/subscription.py,sha256=kx1ox3OkWqdwfdflhdsv00XSYI6nnUZCp97YBZa4Aw4,4269
|
|
17
18
|
rucio/cli/upload.py,sha256=29gJGfb7jsiA6-UwPCSg1kGZu-OJ-bdxUZr27S2mJEM,3237
|
|
18
|
-
rucio/cli/utils.py,sha256=
|
|
19
|
+
rucio/cli/utils.py,sha256=AEmdlvvebyFqBiM5z2HWrR1_kWmcDR1yLq3694rFqMs,10410
|
|
19
20
|
rucio/cli/bin_legacy/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
20
|
-
rucio/cli/bin_legacy/rucio.py,sha256=
|
|
21
|
-
rucio/cli/bin_legacy/rucio_admin.py,sha256=
|
|
21
|
+
rucio/cli/bin_legacy/rucio.py,sha256=x6EDudwDEMHComUXABVALkGsbwQiAhkzWuH2fEww_RY,143999
|
|
22
|
+
rucio/cli/bin_legacy/rucio_admin.py,sha256=pRpJhEGMr3-xzw3EsGeVayEiu8NI_UxEI2wSIbeulzI,141046
|
|
22
23
|
rucio/client/__init__.py,sha256=0-jkSlrJf-eqbN4swA5a07eaWd6_6JXPQPLXMs4A3iI,660
|
|
23
24
|
rucio/client/accountclient.py,sha256=kScbVL9rR8pyZRmETOyz_gwffc7biaPriMgDnCLxA_0,18864
|
|
24
25
|
rucio/client/accountlimitclient.py,sha256=SWYdRMAMibWLZOhFb3HBI9vLvmp2uYjEhtM2ej1iGzQ,6905
|
|
25
|
-
rucio/client/baseclient.py,sha256=
|
|
26
|
-
rucio/client/client.py,sha256=
|
|
26
|
+
rucio/client/baseclient.py,sha256=gXh1RfzpQfvsFFm74F82jareOD8k9IlUOVHwwqsFyxI,50798
|
|
27
|
+
rucio/client/client.py,sha256=npg0pFWzqnmnObjFO7QDdSkH1O0jrY-HglXEVfDrWNY,4493
|
|
27
28
|
rucio/client/configclient.py,sha256=pbp_yEem7g8JTVVOMY-ehMyLh6T3Rxf1AxCluLE-JE8,4800
|
|
28
29
|
rucio/client/credentialclient.py,sha256=q4i_t-dIiojRmiY70iuJsAgnPqaZVwkJLbThxoc8_9k,2214
|
|
29
30
|
rucio/client/didclient.py,sha256=66ODAQnrtvwwSo0Cu9FpCRo_36N28tHtUjbrz92hu_c,34619
|
|
30
|
-
rucio/client/diracclient.py,sha256=
|
|
31
|
+
rucio/client/diracclient.py,sha256=MQCY0UxgXXlosL9-dKB469wkZ9XLgPs4dPsuEFfk4Rc,4465
|
|
31
32
|
rucio/client/downloadclient.py,sha256=FoNTNNpry_2qo4XLIQXn7_AsnzLt9XllLB_J0UYTI7k,91687
|
|
32
33
|
rucio/client/exportclient.py,sha256=xYbDSw5ZQlANjcbs2-CG4jVcyhxNm9GQ827_dokSJes,3310
|
|
33
|
-
rucio/client/fileclient.py,sha256=akpgLwhbRTWNriyI8yGWTGgXbTu-Ka5jmwwVdJBwmVw,1756
|
|
34
34
|
rucio/client/importclient.py,sha256=KeEWZhjrsAR5Km_UXwwH7hzgEo9ACJaJXN6de87txe4,1560
|
|
35
35
|
rucio/client/lifetimeclient.py,sha256=lAtAzia-UWMzzkcFGPQ72kaiSe1iIbIaCBrxK0bD3GQ,5958
|
|
36
36
|
rucio/client/lockclient.py,sha256=zQKaGskTeaqH9TBpLQzHe20Qaaor2jZ84LBINElDBAM,4421
|
|
37
37
|
rucio/client/metaconventionsclient.py,sha256=tYvqXtcByiINcmZe0nT5Id2VuyJ2EDDUP2vfOPO6_yY,5655
|
|
38
|
+
rucio/client/opendataclient.py,sha256=x0ESKis92lwX_lrB0nKukJy0qcvT7cZ5jWccoYxPVGg,9107
|
|
38
39
|
rucio/client/pingclient.py,sha256=WU7jwbHoISky-ULw9h1_VqS0opRAM3j3RFnpWC7l48Y,2392
|
|
39
40
|
rucio/client/replicaclient.py,sha256=Gi7vg87g4hhrW_UA9MB1FewGh67FW2wAnSWj4H9oMQk,20591
|
|
40
41
|
rucio/client/requestclient.py,sha256=Vr1lAmAbfX2iGzj_aKRmRFPBpMXbVxIw_0LVAZ5Xtq0,8574
|
|
@@ -42,36 +43,36 @@ rucio/client/richclient.py,sha256=kP6cHQsvCtKEl1c2fycqpDjfLrMAzaMxuZA_kWddm08,10
|
|
|
42
43
|
rucio/client/rseclient.py,sha256=4R-WcCROjPRfWjcWuFM7itf4vmRRk0qvOa-itnTlZ8w,31858
|
|
43
44
|
rucio/client/ruleclient.py,sha256=tlYRFMKVwjCuzketqg2F4XoGydbhNAjkOnm1BGUZEVg,13639
|
|
44
45
|
rucio/client/scopeclient.py,sha256=-rXLdXScKeXavOaw9EwBHYo4SXwfcuqsOG6yGMIBWyM,3485
|
|
45
|
-
rucio/client/subscriptionclient.py,sha256=
|
|
46
|
+
rucio/client/subscriptionclient.py,sha256=gOTC5JfvdHJ6YUQdVWmrA-qgDMi1vnLkLlySiTAk-jw,9417
|
|
46
47
|
rucio/client/touchclient.py,sha256=LZXC2xI4QmmTTW4D1339sNXP1VwOKtxS-K7AaQwSlf4,2873
|
|
47
|
-
rucio/client/uploadclient.py,sha256=
|
|
48
|
+
rucio/client/uploadclient.py,sha256=pXsgzdQXDC8hcyA2lHvHkyrz1gCNsOADJuqS-gfLTFQ,72217
|
|
48
49
|
rucio/common/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
49
50
|
rucio/common/bittorrent.py,sha256=cpz-axibeHmO-Nk3-RH5JTvF6PjvmrRY0rOCgRjmaHk,8834
|
|
50
51
|
rucio/common/cache.py,sha256=oa1WCodXpsmHzM-LJoYL7wQHw7VMU5I0g3TBg-VzEfo,3389
|
|
51
52
|
rucio/common/checksum.py,sha256=nSqjY8TdDGohpAzcEM2fjv4FPdOKmKr_3U27HalKkoY,5254
|
|
52
53
|
rucio/common/client.py,sha256=vHJ1gnHRBiXC2ZPfSgYPlsdJi0DbvwWDdHHMEOVgBvU,3129
|
|
53
54
|
rucio/common/config.py,sha256=69AhxgP9SXXrlaTqlOCQiaiqGqHLhSfhRFasroGfDdc,24402
|
|
54
|
-
rucio/common/constants.py,sha256=
|
|
55
|
+
rucio/common/constants.py,sha256=5MhQHY24NODmvp71MqHS8BzSird2K1ICmC94clD-JlY,7751
|
|
55
56
|
rucio/common/constraints.py,sha256=MrdiAwKyoaZGfspUWX_53XS2790nXMSMg1JYmTO_ciQ,726
|
|
56
57
|
rucio/common/didtype.py,sha256=nXoyK740yrwsiGX9e9vOc8UX0PXRvKry67C0Sd8SpmM,8010
|
|
57
|
-
rucio/common/exception.py,sha256=
|
|
58
|
+
rucio/common/exception.py,sha256=q_vSqaJ_SdPorkyo247-l9HqBDpZSGZ1pf2-ZR4uaUY,36188
|
|
58
59
|
rucio/common/extra.py,sha256=IE01275vTJobyNiYbptU9NmsUl2Ga_92FSoOODV8Qfk,1054
|
|
59
60
|
rucio/common/logging.py,sha256=_G1QDFpPLghz2VXOjdhC7j-TtZBxmPJsyJtztW7mf68,15874
|
|
60
61
|
rucio/common/pcache.py,sha256=V2OnO4h4v5yaxWT9T9DMJpm-2rLalBzzaqlUWUq5x4c,47097
|
|
61
|
-
rucio/common/plugins.py,sha256=
|
|
62
|
+
rucio/common/plugins.py,sha256=vojZpsEu8jzOdHyrYykJRQnShD_Nq9ODj6EFX3i1OAU,8735
|
|
62
63
|
rucio/common/policy.py,sha256=4i7SHyUpWxagS9nI72nBpWyfvYfz_aH6GH4lFMtDARo,3546
|
|
63
64
|
rucio/common/stomp_utils.py,sha256=3GTiRTJ0roe5OX_wgkVwOJYAIhGgYbhiROHc2M8LQT8,5414
|
|
64
65
|
rucio/common/stopwatch.py,sha256=_9zxoLjr8A0wUDJsljK4vZNDCI-dIOgpcxXiCNVJcHU,1641
|
|
65
66
|
rucio/common/test_rucio_server.py,sha256=2teFpN5Pthp-zQt1_aErOURDTgOhFP9GKdEr1NMmc4o,5085
|
|
66
|
-
rucio/common/types.py,sha256=
|
|
67
|
-
rucio/common/utils.py,sha256=
|
|
67
|
+
rucio/common/types.py,sha256=joi_upIQsi3U3HMmyfVOVQem3404kGI6OixyFzrqavk,11941
|
|
68
|
+
rucio/common/utils.py,sha256=FauL76qhhSm2IZxKrZT7cSnURPCytWAZP5awHdTAXNY,67298
|
|
68
69
|
rucio/common/dumper/__init__.py,sha256=FHhVrOmAJ6-bfHFxgUkPIiejQ0nbGojrW26hfRBHvhg,10940
|
|
69
70
|
rucio/common/dumper/consistency.py,sha256=k1MLD9RAVBR7uBZxjuuQsD8PzbXzOSd6vdWytDweUx4,17962
|
|
70
71
|
rucio/common/dumper/data_models.py,sha256=ckjUy7R9ftmsSCjC1kF0Ccpjq53Eba4EWWlpHzGKI8M,11184
|
|
71
72
|
rucio/common/dumper/path_parsing.py,sha256=Y0GI-xn9VShaR_wFSrzA8yIm0jrjGVAJ5euua0V3enU,2394
|
|
72
73
|
rucio/common/schema/__init__.py,sha256=-uf3w__sNiKX21VCNjItjW6nzdTR2ysq-Bdndda_D3w,8038
|
|
73
|
-
rucio/common/schema/generic.py,sha256=
|
|
74
|
-
rucio/common/schema/generic_multi_vo.py,sha256=
|
|
74
|
+
rucio/common/schema/generic.py,sha256=NmmQJ0Z8dHbL7xnbFL7rvXFK29wA8ZGtkwwwMAxzVC0,15887
|
|
75
|
+
rucio/common/schema/generic_multi_vo.py,sha256=UK5DOO-dO7pY6O44t9SJqzeS3xUye_stu_f-EVD-r0s,15107
|
|
75
76
|
rucio/core/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
76
77
|
rucio/core/account.py,sha256=vQFMm08jEnyhcq52zDJACWf_iVS5xPeWj6z8K2LJFhA,16452
|
|
77
78
|
rucio/core/account_counter.py,sha256=DjxaZfyXKY4VJ7fQgLywkaB4882PIX27f9FXRv0UdbM,7253
|
|
@@ -80,7 +81,7 @@ rucio/core/authentication.py,sha256=r4MJYmr7T8iJZw4CB3ziLv9s6MESh5gUgGJMrnQyIP4,
|
|
|
80
81
|
rucio/core/config.py,sha256=iEfl-64i7HDRO5Do1hQ4ibwCTV5AUlXocWrdWNF-6hw,14197
|
|
81
82
|
rucio/core/credential.py,sha256=pDWLrdgarvAvlgCjamcjVNYtbh0wc_DWXixNKb1TfVM,8529
|
|
82
83
|
rucio/core/did.py,sha256=ZDc96kQWEi70m6CdAOunYNf7gklr9AqjuhsAVP_2z_0,116383
|
|
83
|
-
rucio/core/dirac.py,sha256=
|
|
84
|
+
rucio/core/dirac.py,sha256=rmR1qDCuX3v8EOxlBnMvSxfYTcx6JKBh6ltcfIrwnpE,9871
|
|
84
85
|
rucio/core/distance.py,sha256=3WtfWONxWTopcRf9lsz01XsWikwF8Ga76z9g3Im7bBw,6052
|
|
85
86
|
rucio/core/exporter.py,sha256=sk6Qjrs5Rki_h1-zd8T_6834YZretoHIMuGy3Lu2gHU,1931
|
|
86
87
|
rucio/core/heartbeat.py,sha256=xesayFiO_mFsfvbmaGf0pLyeCTW0dZ4LHypOnDhzlbk,11380
|
|
@@ -94,6 +95,7 @@ rucio/core/monitor.py,sha256=ABVRtfmwroWYEku53jtLy5ByKONLIid3SuP6Yry7sSY,16169
|
|
|
94
95
|
rucio/core/naming_convention.py,sha256=Q_P1ipmynGNgjB1onEPI1gZoLYOUvf49B4dEWTDYj1o,6214
|
|
95
96
|
rucio/core/nongrid_trace.py,sha256=wAEC5KBFby0rB4ihKTNMnHyLkLwyedA3xmvCCwBWtW8,5206
|
|
96
97
|
rucio/core/oidc.py,sha256=olsC-KhO3UninRCAIxykDkABhMCZID-13mxX1JUa6T8,70584
|
|
98
|
+
rucio/core/opendata.py,sha256=rgf4iZGsDa9eJ0qtCkkBDTIEcwE7832hIQQWx6ZRdxE,24415
|
|
97
99
|
rucio/core/quarantined_replica.py,sha256=MKKn1QF5kkXLB-z_K_DJoVtksE1sSXS_WJ44NekcaZc,8323
|
|
98
100
|
rucio/core/replica.py,sha256=fAoaI1eNEiRRNllctoXw9XZYu4MD1OoT1GgdCJqBAwY,185528
|
|
99
101
|
rucio/core/replica_sorter.py,sha256=ONfs4G6fo0JGZ70pqDKT4k7CSRxW82LhCZnQHskJhaU,14993
|
|
@@ -102,13 +104,13 @@ rucio/core/rse.py,sha256=aiNiVKoYZxQ1AFBN2WfxLvQ4Ca3A-LKb-HPCiWRzetw,71008
|
|
|
102
104
|
rucio/core/rse_counter.py,sha256=5N3k5X6p-4PkDsNz-8TXnAWeU2oj8ti4epRDLJj3FWM,6093
|
|
103
105
|
rucio/core/rse_expression_parser.py,sha256=txTYmddSOqdFxia_wkLXZMEtw2SoyOWnhOmzbhtdbsk,15511
|
|
104
106
|
rucio/core/rse_selector.py,sha256=Of9cWR0JA5Su00zn8_KZwHrtKN9YbkzcfGzsWsLhL3I,14596
|
|
105
|
-
rucio/core/rule.py,sha256=
|
|
107
|
+
rucio/core/rule.py,sha256=x9SZNxYl7zYt1RSxczEX9oPlBsngTrUx3yLDFodltFw,211416
|
|
106
108
|
rucio/core/rule_grouping.py,sha256=lWhSIMNo1FPFD1yeV1ziFaY8codmm7uQQdDlwJV3EG4,96091
|
|
107
109
|
rucio/core/scope.py,sha256=RFWbzAAcWvSRTdYbDF7OxzYBkF0CfHmfoDxs66nP7Oc,5920
|
|
108
110
|
rucio/core/subscription.py,sha256=i1zgc2FnceDgrkYzjMFRTTDvWlFssvv_qHgnkJyR_NY,16407
|
|
109
111
|
rucio/core/topology.py,sha256=qErGVrTv4R77G_h8u4bW3lXEw8mL7sZo1KQR5lLW0dw,19282
|
|
110
112
|
rucio/core/trace.py,sha256=eTuYAQtDB-z20qs5_AUD6RLA9Hk0TZH5beKJzRQYtUY,13602
|
|
111
|
-
rucio/core/transfer.py,sha256=
|
|
113
|
+
rucio/core/transfer.py,sha256=9u2Qwk5Os9DhrYMDHT4JpGHsaPilPVxMGMJ2h2-escQ,64840
|
|
112
114
|
rucio/core/vo.py,sha256=SQtW-JObiTQSkJM_3RKz44RrA9vIcsmdbxPsxWMo5cU,5966
|
|
113
115
|
rucio/core/volatile_replica.py,sha256=KvYcu6Lv9EOWxG3Y-yTwVUY5Taq6Zl9CHjRQPiFrYBg,5508
|
|
114
116
|
rucio/core/did_meta_plugins/__init__.py,sha256=oaCADBG9U7MqVzRg6cC2oXnHHUiUGdXhqXJ0mDlLusc,11950
|
|
@@ -123,7 +125,7 @@ rucio/core/permission/__init__.py,sha256=PAWHQvMn5ycMTiY8LMaDlIAvVP_TqPU3GGiKW1x
|
|
|
123
125
|
rucio/core/permission/generic.py,sha256=mAxgCTcKL-HKFsA-xcRw5DfYV9xNPfaOBZzSDXiQilI,49901
|
|
124
126
|
rucio/core/permission/generic_multi_vo.py,sha256=nHkPNNixP6bWKSS8tIOJiX_--TL6s8F2TMnobWMnYu8,45653
|
|
125
127
|
rucio/daemons/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
126
|
-
rucio/daemons/common.py,sha256=
|
|
128
|
+
rucio/daemons/common.py,sha256=jCPsyxWWQvYTt3GeerUSqP48QFpky5iG3hGIdjofs6s,15560
|
|
127
129
|
rucio/daemons/abacus/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
128
130
|
rucio/daemons/abacus/account.py,sha256=I1rSanUNbmnrkH9VWYey4AmGimh2h4O5RHWJOg1oZew,4015
|
|
129
131
|
rucio/daemons/abacus/collection_replica.py,sha256=SPV9UYkpH77cnX8XdYXxLtbv7CTP_cIztOWGug6i8JE,4069
|
|
@@ -148,13 +150,13 @@ rucio/daemons/cache/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtH
|
|
|
148
150
|
rucio/daemons/cache/consumer.py,sha256=trcSffcPLcsDuJ6fc0pcDOBxPnYf4uCMp3G5xTMcD_A,6966
|
|
149
151
|
rucio/daemons/conveyor/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
150
152
|
rucio/daemons/conveyor/common.py,sha256=ktmCzxpzjdduJBo4uJXQV3XHGKZK6EQ6og-aHwqKS6E,26437
|
|
151
|
-
rucio/daemons/conveyor/finisher.py,sha256=
|
|
152
|
-
rucio/daemons/conveyor/poller.py,sha256=
|
|
153
|
-
rucio/daemons/conveyor/preparer.py,sha256
|
|
153
|
+
rucio/daemons/conveyor/finisher.py,sha256=KnaO7kZxNHQtKj1PtBGRvqIqbfOlJxAyI0np55QfB3M,25242
|
|
154
|
+
rucio/daemons/conveyor/poller.py,sha256=VSRdFrVDFyBsAZ_V-4TAPXlODyLZdG7nefN3uF5XJhs,16825
|
|
155
|
+
rucio/daemons/conveyor/preparer.py,sha256=--Zchp5EZqiU8wzeO-qpVSo2nKQ0Hy9pEi1acehwzJg,8032
|
|
154
156
|
rucio/daemons/conveyor/receiver.py,sha256=qTbt2uLM5aCfL7ei4JfMrSZwEa2K0s2Yfh0ahTdAn48,8830
|
|
155
157
|
rucio/daemons/conveyor/stager.py,sha256=rrZ-nfPOQMHZzFnOi18JM6rnHlEQpOsPpNM4M89o_gg,4282
|
|
156
|
-
rucio/daemons/conveyor/submitter.py,sha256=
|
|
157
|
-
rucio/daemons/conveyor/throttler.py,sha256=
|
|
158
|
+
rucio/daemons/conveyor/submitter.py,sha256=NfvlXRx4FhcUL2mHk9EuOQ_myBaq0I7bHEgYKBF4RTU,17217
|
|
159
|
+
rucio/daemons/conveyor/throttler.py,sha256=4buwTCux6CFdMXh5v8DYyNC2w33_yHE__dA_ZjUpsr8,22389
|
|
158
160
|
rucio/daemons/follower/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
159
161
|
rucio/daemons/follower/follower.py,sha256=QlPhOsVRC8xGuExFfvy874e6FfPn9wfFmMbjUBqVXTQ,3438
|
|
160
162
|
rucio/daemons/hermes/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
@@ -189,12 +191,12 @@ rucio/daemons/undertaker/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0
|
|
|
189
191
|
rucio/daemons/undertaker/undertaker.py,sha256=b8HiFkk7YY4fxORQ7MgmDVADZvvHlHiKrczKG_uQpb0,5418
|
|
190
192
|
rucio/db/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
191
193
|
rucio/db/sqla/__init__.py,sha256=nVXdqNgRs6AXgN7cVM3MAdHZZDX1l0FdVEabWEtMbbw,2506
|
|
192
|
-
rucio/db/sqla/constants.py,sha256=
|
|
193
|
-
rucio/db/sqla/models.py,sha256=
|
|
194
|
+
rucio/db/sqla/constants.py,sha256=F0MhQNm7-vgDzXXF7SzVLIRu_JhyfLUdTixXqUX-Seo,4396
|
|
195
|
+
rucio/db/sqla/models.py,sha256=0Zy_VUPNTo_Huu_mdGPdO46a0QfdDyAffMKsfvtqLbc,114783
|
|
194
196
|
rucio/db/sqla/sautils.py,sha256=X4gHWCkqvDlJEEHmhO2txV94__kvS8M9Hb1aJvbLaUg,2000
|
|
195
|
-
rucio/db/sqla/session.py,sha256=
|
|
197
|
+
rucio/db/sqla/session.py,sha256=iu00PirtSQYQe1671lAZTqq8xv_J4CTPHPi8sKa_86A,19586
|
|
196
198
|
rucio/db/sqla/types.py,sha256=VBCDsSozh2mUNwmmBNbA5xZHkgU0FMXwRBmsc33YUtE,6090
|
|
197
|
-
rucio/db/sqla/util.py,sha256
|
|
199
|
+
rucio/db/sqla/util.py,sha256=-CRPH_wkvYFjMpFYYlIs6Vux6F_oDyKSlRjb8HNy_XI,22689
|
|
198
200
|
rucio/db/sqla/migrate_repo/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
199
201
|
rucio/db/sqla/migrate_repo/env.py,sha256=rSNoSvBSykAbjBXvQ3jpsN7MDr0xfYipdRg3VS42ji0,3545
|
|
200
202
|
rucio/db/sqla/migrate_repo/versions/01eaf73ab656_add_new_rule_notification_state_progress.py,sha256=rCIOzEnPJvd3uGqp-Ks-_KQNFoMhrLPWNXZUjSFbIlY,3340
|
|
@@ -294,6 +296,7 @@ rucio/db/sqla/migrate_repo/versions/a118956323f8_added_vo_table_and_vo_col_to_rs
|
|
|
294
296
|
rucio/db/sqla/migrate_repo/versions/a193a275255c_add_status_column_in_messages.py,sha256=nuedHZ-BsBHRc0HRGvDu4Tqdj5RZXigLkWvmAbvyyr0,1730
|
|
295
297
|
rucio/db/sqla/migrate_repo/versions/a5f6f6e928a7_1_7_0.py,sha256=N8-JNL2QMMFE09Edi5gWHDd_5xhnX2bhDp4kMVCfsIk,5836
|
|
296
298
|
rucio/db/sqla/migrate_repo/versions/a616581ee47_added_columns_to_table_requests.py,sha256=GYTkJlqK3_fMF08ceh-9Zsug2qpgRTXzZxoI0MLatys,2595
|
|
299
|
+
rucio/db/sqla/migrate_repo/versions/a62db546a1f1_opendata_initial_model.py,sha256=ljrU7JtXbzoClY1Sgjde0Y7cYgHq9R7HULeet4isUKQ,4270
|
|
297
300
|
rucio/db/sqla/migrate_repo/versions/a6eb23955c28_state_idx_non_functional.py,sha256=3FBlHbQpxsliUEfrqIno0SaZYT6L2gQqwoMUw6NnKT0,2195
|
|
298
301
|
rucio/db/sqla/migrate_repo/versions/a74275a1ad30_added_global_quota_table.py,sha256=6xhRR81vyjjjfLfnbzfPe5WiBACOsxtJav-Ajx801Lk,2173
|
|
299
302
|
rucio/db/sqla/migrate_repo/versions/a93e4e47bda_heartbeats.py,sha256=ZL1Uo9vMzC4djhN63sUYKGwMG_uXHMnCzEIdc2f-jec,2726
|
|
@@ -333,7 +336,7 @@ rucio/gateway/authentication.py,sha256=XQHiVWNolnFcT6tDjmwhrJLihWe22lH17ZZHHss7u
|
|
|
333
336
|
rucio/gateway/config.py,sha256=abxYRppqFT8KowmWpa8Tj7mG8qvBa3INm5CE4f1PIx0,9461
|
|
334
337
|
rucio/gateway/credential.py,sha256=hwEQTJeLZHUHZ5lNrUkWBsX1BkqT_G9kMwvWVo8ErvQ,2565
|
|
335
338
|
rucio/gateway/did.py,sha256=yxMC04ujiBQ4ULHgITebaGcDacqhM_NUVV1H9FfB-C4,32718
|
|
336
|
-
rucio/gateway/dirac.py,sha256=
|
|
339
|
+
rucio/gateway/dirac.py,sha256=kz3-gCf033kj60gTzHy4yXrGPguXx_sI6KRha9Iw_w8,3785
|
|
337
340
|
rucio/gateway/exporter.py,sha256=ZgAxGvnG_lcfcQx9fQ9X3vfEGu3OXD8H9liqOULN7hM,2301
|
|
338
341
|
rucio/gateway/heartbeat.py,sha256=14CxHlkaXedKnWNVj9G5M9s41MQd9daoP4kXQJSKqP4,3000
|
|
339
342
|
rucio/gateway/identity.py,sha256=-fEtersM6qTzR2lYlCtV-PHSE2Uz6mWW70CsKsQ2oEE,7377
|
|
@@ -341,6 +344,7 @@ rucio/gateway/importer.py,sha256=77ZuiN5C2xq3favb9ZPfZlKjWV8gsBqwhwIGE4A4DoQ,185
|
|
|
341
344
|
rucio/gateway/lifetime_exception.py,sha256=Uec2hsX1HFieNX672bR06REHg0m3Ms_883NIcFCdmmU,4183
|
|
342
345
|
rucio/gateway/lock.py,sha256=4Nx2rc1UsDRgB7pSboqEivBWAwOXA3UxCJ0mEon_OXM,4956
|
|
343
346
|
rucio/gateway/meta_conventions.py,sha256=KJOwoDfhHU2KIqrw-Lpq6rOYesXMNO1rX4OOaOFFMhQ,3747
|
|
347
|
+
rucio/gateway/opendata.py,sha256=QAKNEDPLfoi0PyofPMKL-XhDkboYmdnD-YpBVc290ws,6237
|
|
344
348
|
rucio/gateway/permission.py,sha256=qQXzsVOfvvFWQpcg_e7BQVF25zW-Jq5wOrWENVp5wwM,2906
|
|
345
349
|
rucio/gateway/quarantined_replica.py,sha256=fzeIOqCP387tb8TtYlkmua0HJ9QXAf-fCNLV582Jk0k,2829
|
|
346
350
|
rucio/gateway/replica.py,sha256=NNFmizu1RwESK4xbBjAq-V-IhsRZmqdSTCtCy7-eLjQ,25705
|
|
@@ -348,12 +352,12 @@ rucio/gateway/request.py,sha256=IDOmVAEPCuH0Hr-qyhuUBnTeIUPdYUIYHFZLlubEm_E,1667
|
|
|
348
352
|
rucio/gateway/rse.py,sha256=8IPAwWUM0ngvDMFHJeZPp_hwEE2evu5KcOWOs82VQzM,24539
|
|
349
353
|
rucio/gateway/rule.py,sha256=fOqLQX3UPgXbUGoEjA2yB7B5Lm65gfC00u9xJg4iqvY,18121
|
|
350
354
|
rucio/gateway/scope.py,sha256=mSa4im4RZB-08M2tn3_NYXrZnrnYl_nXIhAJh716jWA,3229
|
|
351
|
-
rucio/gateway/subscription.py,sha256=
|
|
355
|
+
rucio/gateway/subscription.py,sha256=vPbYBdzGwz8-bRKC1MXCZK6CcraxDFcpoSbS1OzgUzM,11053
|
|
352
356
|
rucio/gateway/trace.py,sha256=rsLD4fx3O_mxQJY2RtVjHO9FpwMc9jzpmxNdi7VPGBk,1903
|
|
353
357
|
rucio/gateway/vo.py,sha256=6JjIQE4zp-JNq1VV3Ojjdlfc-hNcSVWanVszXHVs2KA,5005
|
|
354
358
|
rucio/rse/__init__.py,sha256=0Y-ZU-K8E-a_sc6q-rTjstREC25EmxPmtIWig5gFNU4,3361
|
|
355
359
|
rucio/rse/rsemanager.py,sha256=Qi8dUD3z0wUCr7O-GeKHKcjt9ur7Jo9d1H3lpm08KcI,41127
|
|
356
|
-
rucio/rse/translation.py,sha256=
|
|
360
|
+
rucio/rse/translation.py,sha256=3UwhOYoYs6NTm4JvK47VpfkGDdxajbhlSfnJSFQ-llU,9609
|
|
357
361
|
rucio/rse/protocols/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
358
362
|
rucio/rse/protocols/bittorrent.py,sha256=ZBm_n7vU_NGXQaaZJWKQ-KUp6nYOMdbLqTvGuKN_LKk,7475
|
|
359
363
|
rucio/rse/protocols/cache.py,sha256=vJxwPa32TWMQSmETKJ_9ZcXmB4GS47yQGkB-d7IJAdc,4306
|
|
@@ -364,7 +368,7 @@ rucio/rse/protocols/http_cache.py,sha256=UVovml9RFfLUNyCJRYkYjhDev00Dd-eahJpfmvX
|
|
|
364
368
|
rucio/rse/protocols/mock.py,sha256=yZDK_xgC7aV9sXrbVsWOliQPS8i0SpsSFigDGy32NOk,4495
|
|
365
369
|
rucio/rse/protocols/ngarc.py,sha256=jZTJ9JFZ7CSD11dtbElzCmuwEdH-k30KMznUFUmSmAQ,7244
|
|
366
370
|
rucio/rse/protocols/posix.py,sha256=jmKcFsrvFbbimKNw9WkK2R4d_XkXx_1zM-KOYa5--Ow,10435
|
|
367
|
-
rucio/rse/protocols/protocol.py,sha256=
|
|
371
|
+
rucio/rse/protocols/protocol.py,sha256=ps-Y6XLUbIa_mG4sGeufRFpLAoteW4jYoiA-S9k3ieo,15495
|
|
368
372
|
rucio/rse/protocols/rclone.py,sha256=beZewvum5BN1P7VvCISAdZMuPb-n-MbwBJqeSTHplVM,15293
|
|
369
373
|
rucio/rse/protocols/rfio.py,sha256=8TJ_60pWH7ragdNG9INz_oOK1LXLc-C43iENGAKfOEg,5768
|
|
370
374
|
rucio/rse/protocols/srm.py,sha256=9QFSORsXT-CR_6tDqyXCAQ5BzZifqaDItCYGIlTQGQI,14699
|
|
@@ -373,14 +377,14 @@ rucio/rse/protocols/storm.py,sha256=Z4fzklxG-x70A0Lugg1jE1RicwCSeF27iz0MXO-4to0,
|
|
|
373
377
|
rucio/rse/protocols/webdav.py,sha256=8UzmBA8vF_-exoUvpIHRQLfhvAvExQsfu-P4WbXGOXI,24810
|
|
374
378
|
rucio/rse/protocols/xrootd.py,sha256=oJHueVR44dcW5nkg8jCbr9PetV9UIti3C0tka_m7yIk,12604
|
|
375
379
|
rucio/tests/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
376
|
-
rucio/tests/common.py,sha256=
|
|
380
|
+
rucio/tests/common.py,sha256=oPffRftoWH3Pxv27XscwLl2_o7I4AHNTpKjsSyb9-RE,11925
|
|
377
381
|
rucio/tests/common_server.py,sha256=hRuD7IZZjlNtahvkIssRvNPK68dS7Cs00aUuO4BQsWs,5667
|
|
378
382
|
rucio/transfertool/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
379
383
|
rucio/transfertool/bittorrent.py,sha256=2gPRmopyav8IXAtHcsC5oUcjZtmNQ8prUMKzFcCPUaE,8378
|
|
380
384
|
rucio/transfertool/bittorrent_driver.py,sha256=3Txv9hzjl2ICop_MjVswLteUzPDECS7sqikvNFzMoRs,1694
|
|
381
385
|
rucio/transfertool/bittorrent_driver_qbittorrent.py,sha256=8L4_K8ZdKS-kML8nLuZSzGZ6PMNtYdxjjO1QJD5C0o8,4987
|
|
382
|
-
rucio/transfertool/fts3.py,sha256=
|
|
383
|
-
rucio/transfertool/fts3_plugins.py,sha256=
|
|
386
|
+
rucio/transfertool/fts3.py,sha256=JDEoBurtcaM8djneVzOqLRwFC_I0-6-_2F5Ln6vHMCk,78464
|
|
387
|
+
rucio/transfertool/fts3_plugins.py,sha256=CTw2DzqB8tMJ3L5hV31XZ6AUGP-v_3ugrhJjDzrMPWs,6190
|
|
384
388
|
rucio/transfertool/globus.py,sha256=JgkkbgBQdmsloGsaAeGm5B_yUQDNabDiZb1hie6teT8,7716
|
|
385
389
|
rucio/transfertool/globus_library.py,sha256=SA2ryvmxieXjQ8L_UcUFILJ26pySzmNMCkokxbWDcI0,8411
|
|
386
390
|
rucio/transfertool/mock.py,sha256=FPa399oZSOzL2yQUhR6JevQT-yhUggSBL5a5lFJ_yVc,3388
|
|
@@ -396,93 +400,95 @@ rucio/web/rest/flaskapi/v1/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Km
|
|
|
396
400
|
rucio/web/rest/flaskapi/v1/accountlimits.py,sha256=CMizBo0qC4-34wygu-KqFVULsDIB0tAbogSvf6cHcK4,8092
|
|
397
401
|
rucio/web/rest/flaskapi/v1/accounts.py,sha256=H-29xbY34cfSgUuUxi0fkFZZlA3KP0VEjTBBGr4mmQk,38174
|
|
398
402
|
rucio/web/rest/flaskapi/v1/archives.py,sha256=cizZNUcZrGFTiwwGO7I8bN-v2l2D7cgRLZSPB_VMA-E,3605
|
|
399
|
-
rucio/web/rest/flaskapi/v1/auth.py,sha256=
|
|
400
|
-
rucio/web/rest/flaskapi/v1/common.py,sha256=
|
|
401
|
-
rucio/web/rest/flaskapi/v1/config.py,sha256=
|
|
403
|
+
rucio/web/rest/flaskapi/v1/auth.py,sha256=Y14C6NZTnK2TkKfYrFNiaGGLcnoNT-jvmnI5qZISWX0,63922
|
|
404
|
+
rucio/web/rest/flaskapi/v1/common.py,sha256=VM3DszTS8F7x0gBmJhqSbbzkoUZSKPCrhxFlPmt3xDc,18708
|
|
405
|
+
rucio/web/rest/flaskapi/v1/config.py,sha256=YyiUMXeUFau5jnjv_wjyPhxjGnO1uiax9bMO2I-k0zQ,10191
|
|
402
406
|
rucio/web/rest/flaskapi/v1/credentials.py,sha256=wGRf3nH-jc_X0ZGJFobsZFSoGFfSWM8JWMNMeJ0xO6E,8147
|
|
403
|
-
rucio/web/rest/flaskapi/v1/dids.py,sha256=
|
|
407
|
+
rucio/web/rest/flaskapi/v1/dids.py,sha256=fcU3wnH9TaZifcbPnYifn4GpV3pWjuONGmResAAkH6U,94241
|
|
404
408
|
rucio/web/rest/flaskapi/v1/dirac.py,sha256=2iEa0uaKoomsg94XTWaEIEFO5ZlS9lVL1XyjK91tHjE,4718
|
|
405
409
|
rucio/web/rest/flaskapi/v1/export.py,sha256=nFa9r-V5-SVb7gmAKYxLvxaFGlAqKxXgi2SaXfSIia4,2664
|
|
406
|
-
rucio/web/rest/flaskapi/v1/heartbeats.py,sha256=
|
|
407
|
-
rucio/web/rest/flaskapi/v1/identities.py,sha256=
|
|
410
|
+
rucio/web/rest/flaskapi/v1/heartbeats.py,sha256=xJFVjI5rbDRivkxuD62kLE2Nfo4NLmpQnx9Kt1RYEN8,4662
|
|
411
|
+
rucio/web/rest/flaskapi/v1/identities.py,sha256=A9pkEUfeFdCx0Ux2uzCsH47XDygqH36w3lVOPkgYsbw,8890
|
|
408
412
|
rucio/web/rest/flaskapi/v1/import.py,sha256=YtMBJkwtwdZ75GFY-da8K2rQgZd4Y37bJo7IFmSOJ98,5293
|
|
409
|
-
rucio/web/rest/flaskapi/v1/lifetime_exceptions.py,sha256=
|
|
410
|
-
rucio/web/rest/flaskapi/v1/locks.py,sha256=
|
|
411
|
-
rucio/web/rest/flaskapi/v1/main.py,sha256=
|
|
412
|
-
rucio/web/rest/flaskapi/v1/meta_conventions.py,sha256=
|
|
413
|
+
rucio/web/rest/flaskapi/v1/lifetime_exceptions.py,sha256=j_PxdALWJ6semHyzezFgaN6B1gYzHyRJSOlvky0APf0,12123
|
|
414
|
+
rucio/web/rest/flaskapi/v1/locks.py,sha256=46DQnKxivraxHmAl3jV2aQVVSnaum1yUhR0BJrK7sQM,13123
|
|
415
|
+
rucio/web/rest/flaskapi/v1/main.py,sha256=PIU3vZP_yYfnYALZOtBkX3uNZj6ylJB1Jm_m_Ag7XgI,3143
|
|
416
|
+
rucio/web/rest/flaskapi/v1/meta_conventions.py,sha256=f69e-aF7tDpM9oaxH8sX2NVWd9eJk6yhFAyCLj2acmM,7322
|
|
413
417
|
rucio/web/rest/flaskapi/v1/metrics.py,sha256=-tCHboUu_5hI87G_pZswhpY6koTwu6WudgW4RixOnIg,1250
|
|
414
|
-
rucio/web/rest/flaskapi/v1/nongrid_traces.py,sha256=
|
|
418
|
+
rucio/web/rest/flaskapi/v1/nongrid_traces.py,sha256=yP2T0bT5SrXVVHNMElYPU2sCMQKaxI5Y-s-H_xvN-h0,3151
|
|
419
|
+
rucio/web/rest/flaskapi/v1/opendata.py,sha256=xKiVIBTy52RK-5s_iqcb_INrTjdDIwkCEoEzr13helg,15361
|
|
420
|
+
rucio/web/rest/flaskapi/v1/opendata_public.py,sha256=QGfPmzSxlkU8WpFoHvnZewxSwyUsjS8RCn8dtQ_Tuf0,5217
|
|
415
421
|
rucio/web/rest/flaskapi/v1/ping.py,sha256=WqyCkz6n395vYCvqK8P92Ig8LQ-cRDW05GPiOewtHyY,3103
|
|
416
422
|
rucio/web/rest/flaskapi/v1/redirect.py,sha256=V9FAnpBVp5PkyY-NDW43i6bdPFNtEdfSTfzMQeee-Kc,13559
|
|
417
423
|
rucio/web/rest/flaskapi/v1/replicas.py,sha256=ZGBF6eOgDIp7krSRdeT8YQdzEx242Ypj9Pdwy_pJ6vQ,73284
|
|
418
|
-
rucio/web/rest/flaskapi/v1/requests.py,sha256
|
|
419
|
-
rucio/web/rest/flaskapi/v1/rses.py,sha256=
|
|
420
|
-
rucio/web/rest/flaskapi/v1/rules.py,sha256=
|
|
421
|
-
rucio/web/rest/flaskapi/v1/scopes.py,sha256=
|
|
422
|
-
rucio/web/rest/flaskapi/v1/subscriptions.py,sha256=
|
|
423
|
-
rucio/web/rest/flaskapi/v1/traces.py,sha256=
|
|
424
|
+
rucio/web/rest/flaskapi/v1/requests.py,sha256=ceNG79C-2AOSIXm-6DEXfHm3XNsWgXh6Vs8t6Qe8h0E,50567
|
|
425
|
+
rucio/web/rest/flaskapi/v1/rses.py,sha256=b098_bAFcIVxjhgiGk2ffHDSlyYgkKwOmY6lT6qLJ3I,82919
|
|
426
|
+
rucio/web/rest/flaskapi/v1/rules.py,sha256=LsZ6ht7cw6pwiBPh_IzYBMm5wYytf5QkdYQinI0JBu4,32401
|
|
427
|
+
rucio/web/rest/flaskapi/v1/scopes.py,sha256=xjlv6kqHyuXNN-b5iJ8emwLjsCkAldGOuQtk0is2neo,5124
|
|
428
|
+
rucio/web/rest/flaskapi/v1/subscriptions.py,sha256=ICiaCa-zrOgCQvhrSMY8b9OK1pKwlpMqL8eECZJ77M8,24675
|
|
429
|
+
rucio/web/rest/flaskapi/v1/traces.py,sha256=eyZJQL72wjI9mYEVmXLg3mSLmHauKQDI13kXQHtn9ok,5765
|
|
424
430
|
rucio/web/rest/flaskapi/v1/types.py,sha256=kY-nml_En9zwkKu9TEYwEZGaF2NJ09gN2IUY7h9rp68,799
|
|
425
|
-
rucio/web/rest/flaskapi/v1/vos.py,sha256=
|
|
431
|
+
rucio/web/rest/flaskapi/v1/vos.py,sha256=qt0PKhXqXfJDFN0b15gvHYNArWFDRI1PDmlyP93D4WY,9178
|
|
426
432
|
rucio/web/rest/flaskapi/v1/templates/auth_crash.html,sha256=enhyVliQHlblgCEHvBzAlLxymFySlc42tk87vfWdBo0,2254
|
|
427
433
|
rucio/web/rest/flaskapi/v1/templates/auth_granted.html,sha256=SDsrTCQhwklLu3mDtSTUATnK16QG1T-eWDTDjmv8bn4,2139
|
|
428
|
-
rucio-
|
|
429
|
-
rucio-
|
|
430
|
-
rucio-
|
|
431
|
-
rucio-
|
|
432
|
-
rucio-
|
|
433
|
-
rucio-
|
|
434
|
-
rucio-
|
|
435
|
-
rucio-
|
|
436
|
-
rucio-
|
|
437
|
-
rucio-
|
|
438
|
-
rucio-
|
|
439
|
-
rucio-
|
|
440
|
-
rucio-
|
|
441
|
-
rucio-
|
|
442
|
-
rucio-
|
|
443
|
-
rucio-
|
|
444
|
-
rucio-
|
|
445
|
-
rucio-
|
|
446
|
-
rucio-
|
|
447
|
-
rucio-
|
|
448
|
-
rucio-
|
|
449
|
-
rucio-
|
|
450
|
-
rucio-
|
|
451
|
-
rucio-
|
|
452
|
-
rucio-
|
|
453
|
-
rucio-
|
|
454
|
-
rucio-
|
|
455
|
-
rucio-
|
|
456
|
-
rucio-
|
|
457
|
-
rucio-
|
|
458
|
-
rucio-
|
|
459
|
-
rucio-
|
|
460
|
-
rucio-
|
|
461
|
-
rucio-
|
|
462
|
-
rucio-
|
|
463
|
-
rucio-
|
|
464
|
-
rucio-
|
|
465
|
-
rucio-
|
|
466
|
-
rucio-
|
|
467
|
-
rucio-
|
|
468
|
-
rucio-
|
|
469
|
-
rucio-
|
|
470
|
-
rucio-
|
|
471
|
-
rucio-
|
|
472
|
-
rucio-
|
|
473
|
-
rucio-
|
|
474
|
-
rucio-
|
|
475
|
-
rucio-
|
|
476
|
-
rucio-
|
|
477
|
-
rucio-
|
|
478
|
-
rucio-
|
|
479
|
-
rucio-
|
|
480
|
-
rucio-
|
|
481
|
-
rucio-
|
|
482
|
-
rucio-
|
|
483
|
-
rucio-
|
|
484
|
-
rucio-
|
|
485
|
-
rucio-
|
|
486
|
-
rucio-
|
|
487
|
-
rucio-
|
|
488
|
-
rucio-
|
|
434
|
+
rucio-38.0.0.data/data/rucio/requirements.server.txt,sha256=0tq4Oa50x-KzrCU5s2P8074foEcGzSNxaSsrQr_os8k,6011
|
|
435
|
+
rucio-38.0.0.data/data/rucio/etc/alembic.ini.template,sha256=4eZJWGyy_-lzZoIhQNRDVGqkALTe0i7Em4wkI4ocVvw,1781
|
|
436
|
+
rucio-38.0.0.data/data/rucio/etc/alembic_offline.ini.template,sha256=NLswPNzUFLVm2l4V4gzWcUpbLNLMnYFRttyVIGXsDaM,1939
|
|
437
|
+
rucio-38.0.0.data/data/rucio/etc/globus-config.yml.template,sha256=ADOplXW10bO5KZVYRavwKgNaDR0VmdJ3gVbINeqoSIA,96
|
|
438
|
+
rucio-38.0.0.data/data/rucio/etc/ldap.cfg.template,sha256=2n-Exv81toCDZ6OzuNfMa71OoiLTdCSjWhkzCfSN3eM,806
|
|
439
|
+
rucio-38.0.0.data/data/rucio/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
|
|
440
|
+
rucio-38.0.0.data/data/rucio/etc/rucio.cfg.atlas.client.template,sha256=aHP1oX9m5yA8xVTTT2Hz6AyOYu92-Bcd5LF0i3AZRQw,1350
|
|
441
|
+
rucio-38.0.0.data/data/rucio/etc/rucio.cfg.template,sha256=hKnGDIm7oIFWBhj6vr5L6bE4TDRHT-7eZh9IsqOHbpo,8023
|
|
442
|
+
rucio-38.0.0.data/data/rucio/etc/rucio_multi_vo.cfg.template,sha256=OOl_XA1lx0h9RUu9ogdjPySzUEbABGPYNiAIRM0LPcQ,6946
|
|
443
|
+
rucio-38.0.0.data/data/rucio/etc/mail_templates/rule_approval_request.tmpl,sha256=MTrB-IQEFE6TJnkwXjLxlUIc4afHmmrdQDC1S5og_dM,1210
|
|
444
|
+
rucio-38.0.0.data/data/rucio/etc/mail_templates/rule_approved_admin.tmpl,sha256=HxYNm7EKG9cMNkwUNPgZUC7o0Q9-DTINh1JtGtHOYUg,105
|
|
445
|
+
rucio-38.0.0.data/data/rucio/etc/mail_templates/rule_approved_user.tmpl,sha256=R4rssZ2hE8wcYPmAyc-UDpO5SPhMLZGNuYz6pvLjPVc,499
|
|
446
|
+
rucio-38.0.0.data/data/rucio/etc/mail_templates/rule_denied_admin.tmpl,sha256=feXJ3pZynlESBuPoe_y8amB84UQnLaP6SHtRk3cn7ZA,120
|
|
447
|
+
rucio-38.0.0.data/data/rucio/etc/mail_templates/rule_denied_user.tmpl,sha256=O054th_sVqZTFUeC3Gg_Qe8CrXQb-bxJhMaO48VMzzU,493
|
|
448
|
+
rucio-38.0.0.data/data/rucio/etc/mail_templates/rule_ok_notification.tmpl,sha256=EiT0KucfIKYnIN5XO9XawzZAJSVRYlza5sn8VloyBy4,546
|
|
449
|
+
rucio-38.0.0.data/data/rucio/tools/bootstrap.py,sha256=iI0Ue2mrRJdjFITm93DLHUBxDb_yfEoMUDpgO5Bqkhw,1259
|
|
450
|
+
rucio-38.0.0.data/data/rucio/tools/merge_rucio_configs.py,sha256=u62K1EcCGydM5nZA30zhlqWo4EX5N87b_MDkx5YfzVI,6163
|
|
451
|
+
rucio-38.0.0.data/data/rucio/tools/reset_database.py,sha256=ZDXVWhIck_QeIi6F7X2qlPK9kgaCo1DsG4lOj3HA8fo,3449
|
|
452
|
+
rucio-38.0.0.data/scripts/rucio,sha256=MfHQzU-lmFsKWORw_aJ632TaKE9Oq_AqrFAEIbA0Drs,5167
|
|
453
|
+
rucio-38.0.0.data/scripts/rucio-abacus-account,sha256=rT7tgYxl5TMhPlg8gCvUA8NSxbgHdjilV8NJ_QMC5GA,2886
|
|
454
|
+
rucio-38.0.0.data/scripts/rucio-abacus-collection-replica,sha256=HD2acGu8xBDAsKGCA7oLQvcY5SdT1mIQhSrREDV2n_M,1809
|
|
455
|
+
rucio-38.0.0.data/scripts/rucio-abacus-rse,sha256=DoRsYnMzzkH7z6YvWjl40mIgXmq_3-osTPdDAqPjHgA,2633
|
|
456
|
+
rucio-38.0.0.data/scripts/rucio-admin,sha256=AhPO6-fAPviHObhB_Yi7GJXKfjpaH6m0RqxwctBeFlE,4229
|
|
457
|
+
rucio-38.0.0.data/scripts/rucio-atropos,sha256=o6KsmbjxbFgtKWl7gZbmBxBc3gYWax6FkkyfhUDmKbY,3171
|
|
458
|
+
rucio-38.0.0.data/scripts/rucio-auditor,sha256=4ktnrxKXkJTyMKysPc-AE7dDGbsa1e_o8bRDRkiJpT4,6124
|
|
459
|
+
rucio-38.0.0.data/scripts/rucio-automatix,sha256=Lgud3OXVqUcBrPMtTAgSgPE5ZWSr74FBfBh0EoA9-E8,1996
|
|
460
|
+
rucio-38.0.0.data/scripts/rucio-bb8,sha256=TD8P3cMiDB_knZKZcGTQsy8aA7nPQXMC1TNPCyXrsSg,3089
|
|
461
|
+
rucio-38.0.0.data/scripts/rucio-cache-client,sha256=71-xm4MyxEDBlwnlviHsOgF0tx5EbADsPoVpj_DJDkA,5276
|
|
462
|
+
rucio-38.0.0.data/scripts/rucio-cache-consumer,sha256=5mCXRQWwAww3aabTMQh-U9HgHFkCJf3VpTHdk9R-rsU,1348
|
|
463
|
+
rucio-38.0.0.data/scripts/rucio-conveyor-finisher,sha256=mAexgdlj41UOwIQDZ5POU8gTRMuKzaOqhEww6cRV2rI,2333
|
|
464
|
+
rucio-38.0.0.data/scripts/rucio-conveyor-poller,sha256=z2C17x3n_eKdDrL1w1ePJpslkbOw2UMTh5BaOw-__Es,2825
|
|
465
|
+
rucio-38.0.0.data/scripts/rucio-conveyor-preparer,sha256=jlaBQbN8f081ekInQxn3QcNvrQQqedmdjQ6PeEp9JeU,1746
|
|
466
|
+
rucio-38.0.0.data/scripts/rucio-conveyor-receiver,sha256=Tgg6oXQp1G31ZK_7OKh6fLvcO3GdGi55b7xho2I9B74,1669
|
|
467
|
+
rucio-38.0.0.data/scripts/rucio-conveyor-stager,sha256=AaFzBHTahrv5--H16lbpUlXc64hijLL_myakuJ0V-oI,3371
|
|
468
|
+
rucio-38.0.0.data/scripts/rucio-conveyor-submitter,sha256=IMENh4rK8w6KbjZaOD8UJEv5BHdiFDjhfsHmZZK-T80,6738
|
|
469
|
+
rucio-38.0.0.data/scripts/rucio-conveyor-throttler,sha256=5YIuyXE_ezko31YMuQkz-w1oGGYluoL3FP7o50KtoTI,3914
|
|
470
|
+
rucio-38.0.0.data/scripts/rucio-dark-reaper,sha256=GmQAUNmmJKJjeuY7jbQIHvrbdQWRJSlqojMF_6h8j2Y,2532
|
|
471
|
+
rucio-38.0.0.data/scripts/rucio-dumper,sha256=zGfdsamPIUxbnDFDPM6FtqR1d3FH1AdC0gtH1JeLaxU,6729
|
|
472
|
+
rucio-38.0.0.data/scripts/rucio-follower,sha256=GgZPcVlIejOX91VcgbUh7DThYTu3lDe8c1AuCIk85vM,1400
|
|
473
|
+
rucio-38.0.0.data/scripts/rucio-hermes,sha256=i238hHzuv9JNUUPHNcOjnFQSs6BpPmz88t8ZFgS2GxI,1973
|
|
474
|
+
rucio-38.0.0.data/scripts/rucio-judge-cleaner,sha256=iOucH4sil-tu5nibFOSKK3BQUhkXvzAx4E5QGbQGGCs,4726
|
|
475
|
+
rucio-38.0.0.data/scripts/rucio-judge-evaluator,sha256=JrWN2ZatnUig5iWM7Ku4nEspXBjaucOrc8Ic55_OCzc,7458
|
|
476
|
+
rucio-38.0.0.data/scripts/rucio-judge-injector,sha256=d6na_n4H7njpUmJQg2Gc4KlbgK0_xuW5vw3waLReLTQ,1657
|
|
477
|
+
rucio-38.0.0.data/scripts/rucio-judge-repairer,sha256=QHeBySAn1bYS17z5dTfq8o81uEUpqhGVUqe6KWZBVmQ,1661
|
|
478
|
+
rucio-38.0.0.data/scripts/rucio-kronos,sha256=WQQ0izYfdVvmfaaRkqSf4mejL-U86OL5mD5v1t2p6Eg,1770
|
|
479
|
+
rucio-38.0.0.data/scripts/rucio-minos,sha256=-utVl82-xd7zxp4yy1udqCm_MehRP7pU5WDdJ7EFuac,2246
|
|
480
|
+
rucio-38.0.0.data/scripts/rucio-minos-temporary-expiration,sha256=E9G_h__cJNWuEcFDoeBFjzCHqp1swW-ff67M2WpZ3eg,1983
|
|
481
|
+
rucio-38.0.0.data/scripts/rucio-necromancer,sha256=3qGsbLJqoEVyuKYLgpCRoxRexPf-_1ufR_wJYMby9gc,5681
|
|
482
|
+
rucio-38.0.0.data/scripts/rucio-oauth-manager,sha256=qqFyI_L-bHg4R6a3OSgL_RsmosuODykX7HM-u0Mr-nY,2776
|
|
483
|
+
rucio-38.0.0.data/scripts/rucio-reaper,sha256=c0aMDs0N0ubKcl5T5aHunqaBcmIIj6WmERReKTS9di4,3773
|
|
484
|
+
rucio-38.0.0.data/scripts/rucio-replica-recoverer,sha256=vE_8iW0wooL3rSejMtX5SDKZ8jVit1QC86XesGwwsIU,19446
|
|
485
|
+
rucio-38.0.0.data/scripts/rucio-rse-decommissioner,sha256=zXXTq1lPzoI5R012fGWrxXi9VcHZNIfB85EefwQN1kw,2337
|
|
486
|
+
rucio-38.0.0.data/scripts/rucio-storage-consistency-actions,sha256=Mb4GUO1kP7HdiCORhHkYfmfZIhJKp88RBr8TEC19HXo,3906
|
|
487
|
+
rucio-38.0.0.data/scripts/rucio-transmogrifier,sha256=i17F1FTrxharmCWVZpylXSH2Xow2KaxkTr2jzDFn8Rc,3350
|
|
488
|
+
rucio-38.0.0.data/scripts/rucio-undertaker,sha256=JYwGBZC_wdwOPHJKXj_VLipd7G838Eo__43JFNtBors,2775
|
|
489
|
+
rucio-38.0.0.dist-info/licenses/AUTHORS.rst,sha256=FQ5q2_bY3dYKDmEw-8YD-SgPJ4fgnM1XI5wRF5ksQPg,4771
|
|
490
|
+
rucio-38.0.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
491
|
+
rucio-38.0.0.dist-info/METADATA,sha256=xKJUwvh76x4AZbZp3HCeRTlNkm9iBvbeKAvkDIDAXYo,3300
|
|
492
|
+
rucio-38.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
493
|
+
rucio-38.0.0.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
|
|
494
|
+
rucio-38.0.0.dist-info/RECORD,,
|
|
@@ -69,6 +69,7 @@ Individual contributors to the source code
|
|
|
69
69
|
- Maximilian Linhoff, <maximilian.linhoff@tu-dortmund.de>, 2024
|
|
70
70
|
- Eric Banzuzi, <eric.banzuzi@gmail.com>, 2024
|
|
71
71
|
- Paul Millar, <paul.millar@desy.de>, 2025
|
|
72
|
+
- Vimalan S <vimalan.github@gmail.com>, 2025
|
|
72
73
|
|
|
73
74
|
Organisations employing contributors
|
|
74
75
|
------------------------------------
|
rucio/client/fileclient.py
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
# Copyright European Organization for Nuclear Research (CERN) since 2012
|
|
2
|
-
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
# you may not use this file except in compliance with the License.
|
|
5
|
-
# You may obtain a copy of the License at
|
|
6
|
-
#
|
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
#
|
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
# See the License for the specific language governing permissions and
|
|
13
|
-
# limitations under the License.
|
|
14
|
-
|
|
15
|
-
from json import loads
|
|
16
|
-
from typing import Any
|
|
17
|
-
from urllib.parse import quote_plus
|
|
18
|
-
|
|
19
|
-
from requests.status_codes import codes
|
|
20
|
-
|
|
21
|
-
from rucio.client.baseclient import BaseClient, choice
|
|
22
|
-
from rucio.common.utils import build_url
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
class FileClient(BaseClient):
|
|
26
|
-
"""Dataset client class for working with dataset"""
|
|
27
|
-
|
|
28
|
-
BASEURL = 'files'
|
|
29
|
-
|
|
30
|
-
def list_file_replicas(self, scope: str, lfn: str) -> list[dict[str, Any]]:
|
|
31
|
-
"""
|
|
32
|
-
List file replicas.
|
|
33
|
-
|
|
34
|
-
Parameters
|
|
35
|
-
----------
|
|
36
|
-
scope :
|
|
37
|
-
The scope of the file.
|
|
38
|
-
lfn :
|
|
39
|
-
The LFN
|
|
40
|
-
|
|
41
|
-
Returns
|
|
42
|
-
-------
|
|
43
|
-
|
|
44
|
-
List of replicas.
|
|
45
|
-
"""
|
|
46
|
-
path = '/'.join([self.BASEURL, quote_plus(scope), quote_plus(lfn), 'rses'])
|
|
47
|
-
url = build_url(choice(self.list_hosts), path=path)
|
|
48
|
-
|
|
49
|
-
r = self._send_request(url, type_='GET')
|
|
50
|
-
|
|
51
|
-
if r.status_code == codes.ok:
|
|
52
|
-
rses = loads(r.text)
|
|
53
|
-
return rses
|
|
54
|
-
else:
|
|
55
|
-
print(r.status_code)
|
|
56
|
-
exc_cls, exc_msg = self._get_exception(headers=r.headers, status_code=r.status_code, data=r.content)
|
|
57
|
-
raise exc_cls(exc_msg)
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env python3
|
|
2
|
-
# Copyright European Organization for Nuclear Research (CERN) since 2012
|
|
3
|
-
#
|
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
# you may not use this file except in compliance with the License.
|
|
6
|
-
# You may obtain a copy of the License at
|
|
7
|
-
#
|
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
#
|
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
# See the License for the specific language governing permissions and
|
|
14
|
-
# limitations under the License.
|
|
15
|
-
|
|
16
|
-
import os.path
|
|
17
|
-
import sys
|
|
18
|
-
|
|
19
|
-
base_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
20
|
-
sys.path.append(base_path)
|
|
21
|
-
os.chdir(base_path)
|
|
22
|
-
|
|
23
|
-
from argparse import ArgumentParser # noqa: E402
|
|
24
|
-
|
|
25
|
-
from rucio.db.sqla.util import build_database, create_base_vo, create_root_account, destroy_database, drop_everything # noqa: E402
|
|
26
|
-
|
|
27
|
-
if __name__ == '__main__':
|
|
28
|
-
|
|
29
|
-
parser = ArgumentParser()
|
|
30
|
-
parser.add_argument('-d', '--drop-everything', action="store_true", default=False, help='Drop all tables and constraints')
|
|
31
|
-
args = parser.parse_args()
|
|
32
|
-
|
|
33
|
-
if args.drop_everything:
|
|
34
|
-
drop_everything()
|
|
35
|
-
else:
|
|
36
|
-
destroy_database()
|
|
37
|
-
|
|
38
|
-
build_database()
|
|
39
|
-
create_base_vo()
|
|
40
|
-
create_root_account()
|
|
File without changes
|
|
File without changes
|
{rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl
RENAMED
|
File without changes
|
{rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl
RENAMED
|
File without changes
|
{rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl
RENAMED
|
File without changes
|
{rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl
RENAMED
|
File without changes
|
|
File without changes
|
{rucio-37.7.1.data → rucio-38.0.0.data}/data/rucio/etc/mail_templates/rule_ok_notification.tmpl
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
|