rucio 37.3.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/core/permission/generic.py +37 -1
- rucio/core/replica.py +5 -5
- rucio/core/rule.py +5 -3
- rucio/daemons/judge/evaluator.py +1 -1
- rucio/gateway/replica.py +129 -41
- rucio/gateway/request.py +176 -103
- rucio/gateway/subscription.py +90 -108
- rucio/vcsversion.py +3 -3
- rucio/web/rest/flaskapi/v1/redirect.py +1 -1
- rucio/web/rest/flaskapi/v1/replicas.py +1 -1
- rucio/web/rest/flaskapi/v1/requests.py +211 -20
- rucio/web/rest/flaskapi/v1/subscriptions.py +9 -9
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/rucio.cfg.template +0 -1
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/rucio_multi_vo.cfg.template +0 -1
- {rucio-37.3.0.dist-info → rucio-37.4.0.dist-info}/METADATA +1 -1
- {rucio-37.3.0.dist-info → rucio-37.4.0.dist-info}/RECORD +97 -97
- {rucio-37.3.0.dist-info → rucio-37.4.0.dist-info}/WHEEL +1 -1
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/alembic.ini.template +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/alembic_offline.ini.template +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/globus-config.yml.template +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/ldap.cfg.template +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_denied_user.tmpl +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_ok_notification.tmpl +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/rse-accounts.cfg.template +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/rucio.cfg.atlas.client.template +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/requirements.server.txt +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/tools/bootstrap.py +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/tools/merge_rucio_configs.py +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/tools/reset_database.py +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-abacus-account +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-abacus-collection-replica +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-abacus-rse +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-admin +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-atropos +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-auditor +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-automatix +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-bb8 +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-cache-client +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-cache-consumer +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-finisher +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-poller +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-preparer +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-receiver +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-stager +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-submitter +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-conveyor-throttler +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-dark-reaper +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-dumper +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-follower +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-hermes +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-judge-cleaner +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-judge-evaluator +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-judge-injector +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-judge-repairer +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-kronos +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-minos +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-minos-temporary-expiration +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-necromancer +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-oauth-manager +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-reaper +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-replica-recoverer +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-rse-decommissioner +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-storage-consistency-actions +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-transmogrifier +0 -0
- {rucio-37.3.0.data → rucio-37.4.0.data}/scripts/rucio-undertaker +0 -0
- {rucio-37.3.0.dist-info → rucio-37.4.0.dist-info}/licenses/AUTHORS.rst +0 -0
- {rucio-37.3.0.dist-info → rucio-37.4.0.dist-info}/licenses/LICENSE +0 -0
- {rucio-37.3.0.dist-info → rucio-37.4.0.dist-info}/top_level.txt +0 -0
|
@@ -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
|
|
@@ -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
|
|
@@ -343,12 +343,12 @@ 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=
|
|
346
|
+
rucio/gateway/replica.py,sha256=93Uiz4St_jXTowW9Z77sbUr71vkS0wtO-v8LyT3BMvo,25608
|
|
347
|
+
rucio/gateway/request.py,sha256=_xf12EnTx2D3odP5sQJ4m6yhfoOpW7IJMIiurd7tAEQ,16551
|
|
348
348
|
rucio/gateway/rse.py,sha256=BhkIDaxgWxPBo7VNTsMdWUvGhTihP7Uho_0fm8gXFwU,24363
|
|
349
349
|
rucio/gateway/rule.py,sha256=mdjwSsQcjVcgCxDbmIvECkFuEpYmrFgOj5YRB7URpzI,18020
|
|
350
350
|
rucio/gateway/scope.py,sha256=ofcWhrAHBkFbBBadBnBpIxboTnZQ3opMB2w4-jga_vs,3168
|
|
351
|
-
rucio/gateway/subscription.py,sha256=
|
|
351
|
+
rucio/gateway/subscription.py,sha256=9ZkQPmH4uRO78dTD5KtfJRSPNdOEkbfS6gsRFntgnvo,10808
|
|
352
352
|
rucio/gateway/trace.py,sha256=rsLD4fx3O_mxQJY2RtVjHO9FpwMc9jzpmxNdi7VPGBk,1903
|
|
353
353
|
rucio/gateway/vo.py,sha256=YJTOx_7o2PMkw0hPuMEYwR-b3uhm872wVJL0EEtQRgo,4939
|
|
354
354
|
rucio/rse/__init__.py,sha256=imxCKNQN59aPqPhMd2yKg7mHBMFL00OkQT1Gqb8tF54,3290
|
|
@@ -413,76 +413,76 @@ rucio/web/rest/flaskapi/v1/meta_conventions.py,sha256=iYELtdSh2hgAu0FLv6nhOV8EKH
|
|
|
413
413
|
rucio/web/rest/flaskapi/v1/metrics.py,sha256=-tCHboUu_5hI87G_pZswhpY6koTwu6WudgW4RixOnIg,1250
|
|
414
414
|
rucio/web/rest/flaskapi/v1/nongrid_traces.py,sha256=qJdu9ZjGg1aLHxQUSjMi5TJV_dN1g4BCtTA4Wet1gcY,3130
|
|
415
415
|
rucio/web/rest/flaskapi/v1/ping.py,sha256=m3ahSzver84xECWnteEWIVuH8WSNZAs_QRZ8gY_UVZA,3095
|
|
416
|
-
rucio/web/rest/flaskapi/v1/redirect.py,sha256=
|
|
417
|
-
rucio/web/rest/flaskapi/v1/replicas.py,sha256=
|
|
418
|
-
rucio/web/rest/flaskapi/v1/requests.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
419
|
rucio/web/rest/flaskapi/v1/rses.py,sha256=x8MHCo4JTJNzzNF1HeZg1ElQ-1ZlllKQHIadnvO9mOQ,82022
|
|
420
420
|
rucio/web/rest/flaskapi/v1/rules.py,sha256=Qj4aiD8eq31oOshR_z74AiIWAvSOxz-VnNGVrT6L4O0,32117
|
|
421
421
|
rucio/web/rest/flaskapi/v1/scopes.py,sha256=R36LZRQIBVul-UZTX-Oes_qnAZK5tbDkEhmVR8Z0eCM,5056
|
|
422
|
-
rucio/web/rest/flaskapi/v1/subscriptions.py,sha256=
|
|
422
|
+
rucio/web/rest/flaskapi/v1/subscriptions.py,sha256=1s9HUz3OTqLTieu8zZegwBzbBLwo4sLhhlrtXjqfzAo,24638
|
|
423
423
|
rucio/web/rest/flaskapi/v1/traces.py,sha256=6AS6WWRQceOuXKoIHsEJbDsQUcdL56a8fs1wocfKY0o,5716
|
|
424
424
|
rucio/web/rest/flaskapi/v1/types.py,sha256=kY-nml_En9zwkKu9TEYwEZGaF2NJ09gN2IUY7h9rp68,799
|
|
425
425
|
rucio/web/rest/flaskapi/v1/vos.py,sha256=V1ymoOSL8Atom2j2dGDrQitW6cRZgW-IzLrj1_42LZs,9088
|
|
426
426
|
rucio/web/rest/flaskapi/v1/templates/auth_crash.html,sha256=enhyVliQHlblgCEHvBzAlLxymFySlc42tk87vfWdBo0,2254
|
|
427
427
|
rucio/web/rest/flaskapi/v1/templates/auth_granted.html,sha256=SDsrTCQhwklLu3mDtSTUATnK16QG1T-eWDTDjmv8bn4,2139
|
|
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.
|
|
488
|
-
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.3.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl
RENAMED
|
File without changes
|
{rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl
RENAMED
|
File without changes
|
{rucio-37.3.0.data → rucio-37.4.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl
RENAMED
|
File without changes
|
{rucio-37.3.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.3.0.data → rucio-37.4.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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|