rucio 35.7.0__py3-none-any.whl → 37.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/{daemons/c3po/collectors → cli}/__init__.py +1 -0
- rucio/cli/account.py +216 -0
- rucio-35.7.0.data/scripts/rucio → rucio/cli/bin_legacy/rucio.py +769 -486
- rucio-35.7.0.data/scripts/rucio-admin → rucio/cli/bin_legacy/rucio_admin.py +476 -423
- rucio/cli/command.py +272 -0
- rucio/cli/config.py +72 -0
- rucio/cli/did.py +191 -0
- rucio/cli/download.py +128 -0
- rucio/cli/lifetime_exception.py +33 -0
- rucio/cli/replica.py +162 -0
- rucio/cli/rse.py +293 -0
- rucio/cli/rule.py +158 -0
- rucio/cli/scope.py +40 -0
- rucio/cli/subscription.py +73 -0
- rucio/cli/upload.py +60 -0
- rucio/cli/utils.py +226 -0
- rucio/client/accountclient.py +0 -1
- rucio/client/baseclient.py +33 -24
- rucio/client/client.py +45 -1
- rucio/client/didclient.py +5 -3
- rucio/client/downloadclient.py +6 -8
- rucio/client/replicaclient.py +0 -2
- rucio/client/richclient.py +317 -0
- rucio/client/rseclient.py +4 -4
- rucio/client/uploadclient.py +26 -12
- rucio/common/bittorrent.py +234 -0
- rucio/common/cache.py +66 -29
- rucio/common/checksum.py +168 -0
- rucio/common/client.py +122 -0
- rucio/common/config.py +22 -35
- rucio/common/constants.py +61 -3
- rucio/common/didtype.py +72 -24
- rucio/common/dumper/__init__.py +45 -38
- rucio/common/dumper/consistency.py +75 -30
- rucio/common/dumper/data_models.py +63 -19
- rucio/common/dumper/path_parsing.py +19 -8
- rucio/common/exception.py +65 -8
- rucio/common/extra.py +5 -10
- rucio/common/logging.py +13 -13
- rucio/common/pcache.py +8 -7
- rucio/common/plugins.py +59 -27
- rucio/common/policy.py +12 -3
- rucio/common/schema/__init__.py +84 -34
- rucio/common/schema/generic.py +0 -17
- rucio/common/schema/generic_multi_vo.py +0 -17
- rucio/common/test_rucio_server.py +12 -6
- rucio/common/types.py +132 -52
- rucio/common/utils.py +93 -643
- rucio/core/account_limit.py +14 -12
- rucio/core/authentication.py +2 -2
- rucio/core/config.py +23 -42
- rucio/core/credential.py +14 -15
- rucio/core/did.py +5 -1
- rucio/core/did_meta_plugins/elasticsearch_meta.py +407 -0
- rucio/core/did_meta_plugins/filter_engine.py +62 -3
- rucio/core/did_meta_plugins/json_meta.py +2 -2
- rucio/core/did_meta_plugins/mongo_meta.py +43 -30
- rucio/core/did_meta_plugins/postgres_meta.py +75 -39
- rucio/core/identity.py +6 -5
- rucio/core/importer.py +4 -3
- rucio/core/lifetime_exception.py +2 -2
- rucio/core/lock.py +8 -7
- rucio/core/message.py +6 -0
- rucio/core/monitor.py +30 -29
- rucio/core/naming_convention.py +2 -2
- rucio/core/nongrid_trace.py +2 -2
- rucio/core/oidc.py +11 -9
- rucio/core/permission/__init__.py +79 -37
- rucio/core/permission/generic.py +1 -7
- rucio/core/permission/generic_multi_vo.py +1 -7
- rucio/core/quarantined_replica.py +4 -3
- rucio/core/replica.py +464 -139
- rucio/core/replica_sorter.py +55 -59
- rucio/core/request.py +34 -32
- rucio/core/rse.py +301 -97
- rucio/core/rse_counter.py +1 -2
- rucio/core/rse_expression_parser.py +7 -7
- rucio/core/rse_selector.py +9 -7
- rucio/core/rule.py +41 -40
- rucio/core/rule_grouping.py +42 -40
- rucio/core/scope.py +5 -4
- rucio/core/subscription.py +26 -28
- rucio/core/topology.py +11 -11
- rucio/core/trace.py +2 -2
- rucio/core/transfer.py +29 -15
- rucio/core/volatile_replica.py +4 -3
- rucio/daemons/atropos/atropos.py +1 -1
- rucio/daemons/auditor/__init__.py +2 -2
- rucio/daemons/auditor/srmdumps.py +6 -6
- rucio/daemons/automatix/automatix.py +32 -21
- rucio/daemons/badreplicas/necromancer.py +2 -2
- rucio/daemons/bb8/nuclei_background_rebalance.py +1 -1
- rucio/daemons/bb8/t2_background_rebalance.py +1 -1
- rucio/daemons/common.py +15 -25
- rucio/daemons/conveyor/finisher.py +2 -2
- rucio/daemons/conveyor/poller.py +18 -28
- rucio/daemons/conveyor/receiver.py +2 -2
- rucio/daemons/conveyor/stager.py +1 -0
- rucio/daemons/conveyor/submitter.py +3 -3
- rucio/daemons/hermes/hermes.py +91 -30
- rucio/daemons/judge/evaluator.py +2 -2
- rucio/daemons/oauthmanager/oauthmanager.py +3 -3
- rucio/daemons/reaper/dark_reaper.py +7 -3
- rucio/daemons/reaper/reaper.py +12 -16
- rucio/daemons/rsedecommissioner/config.py +1 -1
- rucio/daemons/rsedecommissioner/profiles/generic.py +5 -4
- rucio/daemons/rsedecommissioner/profiles/types.py +7 -6
- rucio/daemons/rsedecommissioner/rse_decommissioner.py +1 -1
- rucio/daemons/storage/consistency/actions.py +8 -6
- rucio/daemons/tracer/kronos.py +4 -4
- rucio/db/sqla/constants.py +5 -0
- rucio/db/sqla/migrate_repo/versions/1677d4d803c8_split_rse_availability_into_multiple.py +4 -4
- rucio/db/sqla/migrate_repo/versions/30d5206e9cad_increase_oauthrequest_redirect_msg_.py +37 -0
- rucio/db/sqla/models.py +157 -154
- rucio/db/sqla/session.py +58 -27
- rucio/db/sqla/types.py +2 -2
- rucio/db/sqla/util.py +2 -2
- rucio/gateway/account.py +18 -12
- rucio/gateway/account_limit.py +137 -60
- rucio/gateway/authentication.py +18 -12
- rucio/gateway/config.py +30 -20
- rucio/gateway/credential.py +9 -10
- rucio/gateway/did.py +70 -53
- rucio/gateway/dirac.py +6 -4
- rucio/gateway/exporter.py +3 -2
- rucio/gateway/heartbeat.py +6 -4
- rucio/gateway/identity.py +36 -51
- rucio/gateway/importer.py +3 -2
- rucio/gateway/lifetime_exception.py +3 -2
- rucio/gateway/meta_conventions.py +17 -6
- rucio/gateway/permission.py +4 -1
- rucio/gateway/quarantined_replica.py +3 -2
- rucio/gateway/replica.py +31 -22
- rucio/gateway/request.py +27 -18
- rucio/gateway/rse.py +69 -37
- rucio/gateway/rule.py +46 -26
- rucio/gateway/scope.py +3 -2
- rucio/gateway/subscription.py +14 -11
- rucio/gateway/vo.py +12 -8
- rucio/rse/__init__.py +3 -3
- rucio/rse/protocols/bittorrent.py +11 -1
- rucio/rse/protocols/cache.py +0 -11
- rucio/rse/protocols/dummy.py +0 -11
- rucio/rse/protocols/gfal.py +14 -9
- rucio/rse/protocols/globus.py +1 -1
- rucio/rse/protocols/http_cache.py +1 -1
- rucio/rse/protocols/posix.py +2 -2
- rucio/rse/protocols/protocol.py +84 -317
- rucio/rse/protocols/rclone.py +2 -1
- rucio/rse/protocols/rfio.py +10 -1
- rucio/rse/protocols/ssh.py +2 -1
- rucio/rse/protocols/storm.py +2 -13
- rucio/rse/protocols/webdav.py +74 -30
- rucio/rse/protocols/xrootd.py +2 -1
- rucio/rse/rsemanager.py +170 -53
- rucio/rse/translation.py +260 -0
- rucio/tests/common.py +23 -13
- rucio/tests/common_server.py +26 -9
- rucio/transfertool/bittorrent.py +15 -14
- rucio/transfertool/bittorrent_driver.py +5 -7
- rucio/transfertool/bittorrent_driver_qbittorrent.py +9 -8
- rucio/transfertool/fts3.py +20 -16
- rucio/transfertool/mock.py +2 -3
- rucio/vcsversion.py +4 -4
- rucio/version.py +7 -0
- rucio/web/rest/flaskapi/v1/accounts.py +17 -3
- rucio/web/rest/flaskapi/v1/auth.py +5 -5
- rucio/web/rest/flaskapi/v1/credentials.py +3 -2
- rucio/web/rest/flaskapi/v1/dids.py +21 -15
- rucio/web/rest/flaskapi/v1/identities.py +33 -9
- rucio/web/rest/flaskapi/v1/redirect.py +5 -4
- rucio/web/rest/flaskapi/v1/replicas.py +12 -8
- rucio/web/rest/flaskapi/v1/rses.py +15 -4
- rucio/web/rest/flaskapi/v1/traces.py +56 -19
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/alembic.ini.template +1 -1
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/alembic_offline.ini.template +1 -1
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/rucio.cfg.atlas.client.template +3 -2
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/rucio.cfg.template +3 -19
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/rucio_multi_vo.cfg.template +1 -18
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/requirements.server.txt +97 -68
- rucio-37.0.0.data/scripts/rucio +133 -0
- rucio-37.0.0.data/scripts/rucio-admin +97 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-atropos +2 -2
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-auditor +2 -1
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-automatix +2 -2
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-cache-client +17 -10
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-conveyor-receiver +1 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-kronos +1 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-minos +2 -2
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-minos-temporary-expiration +2 -2
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-necromancer +2 -2
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-reaper +6 -6
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-transmogrifier +2 -2
- rucio-37.0.0.dist-info/METADATA +92 -0
- {rucio-35.7.0.dist-info → rucio-37.0.0.dist-info}/RECORD +237 -243
- {rucio-35.7.0.dist-info → rucio-37.0.0.dist-info}/licenses/AUTHORS.rst +3 -0
- rucio/common/schema/atlas.py +0 -413
- rucio/common/schema/belleii.py +0 -408
- rucio/common/schema/domatpc.py +0 -401
- rucio/common/schema/escape.py +0 -426
- rucio/common/schema/icecube.py +0 -406
- rucio/core/permission/atlas.py +0 -1348
- rucio/core/permission/belleii.py +0 -1077
- rucio/core/permission/escape.py +0 -1078
- rucio/daemons/c3po/algorithms/__init__.py +0 -13
- rucio/daemons/c3po/algorithms/simple.py +0 -134
- rucio/daemons/c3po/algorithms/t2_free_space.py +0 -128
- rucio/daemons/c3po/algorithms/t2_free_space_only_pop.py +0 -130
- rucio/daemons/c3po/algorithms/t2_free_space_only_pop_with_network.py +0 -294
- rucio/daemons/c3po/c3po.py +0 -371
- rucio/daemons/c3po/collectors/agis.py +0 -108
- rucio/daemons/c3po/collectors/free_space.py +0 -81
- rucio/daemons/c3po/collectors/jedi_did.py +0 -57
- rucio/daemons/c3po/collectors/mock_did.py +0 -51
- rucio/daemons/c3po/collectors/network_metrics.py +0 -71
- rucio/daemons/c3po/collectors/workload.py +0 -112
- rucio/daemons/c3po/utils/__init__.py +0 -13
- rucio/daemons/c3po/utils/dataset_cache.py +0 -50
- rucio/daemons/c3po/utils/expiring_dataset_cache.py +0 -56
- rucio/daemons/c3po/utils/expiring_list.py +0 -62
- rucio/daemons/c3po/utils/popularity.py +0 -85
- rucio/daemons/c3po/utils/timeseries.py +0 -89
- rucio/rse/protocols/gsiftp.py +0 -92
- rucio-35.7.0.data/scripts/rucio-c3po +0 -85
- rucio-35.7.0.dist-info/METADATA +0 -72
- /rucio/{daemons/c3po → cli/bin_legacy}/__init__.py +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/globus-config.yml.template +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/ldap.cfg.template +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/mail_templates/rule_denied_user.tmpl +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/mail_templates/rule_ok_notification.tmpl +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/etc/rse-accounts.cfg.template +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/tools/bootstrap.py +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/tools/merge_rucio_configs.py +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/data/rucio/tools/reset_database.py +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-abacus-account +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-abacus-collection-replica +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-abacus-rse +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-bb8 +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-cache-consumer +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-conveyor-finisher +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-conveyor-poller +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-conveyor-preparer +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-conveyor-stager +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-conveyor-submitter +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-conveyor-throttler +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-dark-reaper +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-dumper +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-follower +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-hermes +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-judge-cleaner +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-judge-evaluator +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-judge-injector +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-judge-repairer +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-oauth-manager +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-replica-recoverer +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-rse-decommissioner +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-storage-consistency-actions +0 -0
- {rucio-35.7.0.data → rucio-37.0.0.data}/scripts/rucio-undertaker +0 -0
- {rucio-35.7.0.dist-info → rucio-37.0.0.dist-info}/WHEEL +0 -0
- {rucio-35.7.0.dist-info → rucio-37.0.0.dist-info}/licenses/LICENSE +0 -0
- {rucio-35.7.0.dist-info → rucio-37.0.0.dist-info}/top_level.txt +0 -0
|
@@ -1,17 +1,34 @@
|
|
|
1
1
|
rucio/__init__.py,sha256=Y7cPPlHVQPFyN8bSPFC0W3WViEdONr5g_qwBub5rufE,660
|
|
2
|
-
rucio/alembicrevision.py,sha256=
|
|
3
|
-
rucio/vcsversion.py,sha256=
|
|
4
|
-
rucio/version.py,sha256=
|
|
2
|
+
rucio/alembicrevision.py,sha256=lNSQZYA4U_fsMW8l0dHpiV243XZhioqvVo9ihmpuQBo,690
|
|
3
|
+
rucio/vcsversion.py,sha256=P1ulmBEwzs26MeOYW-oAXdxLr2AOGnkNcqatd3CueOA,240
|
|
4
|
+
rucio/version.py,sha256=IwsNb1QQk0D092QQbR2K9wBPF2Akny1RGs-ZZziUohE,1519
|
|
5
|
+
rucio/cli/__init__.py,sha256=GIkHmxgE3xdvWSf-7ZnvVaJmbs7NokaSjbFzsrXOG9o,662
|
|
6
|
+
rucio/cli/account.py,sha256=ocazNLsYvWVu-XfMxaXAhUjU7syd68Pu6sYb6jdiSbs,9032
|
|
7
|
+
rucio/cli/command.py,sha256=_KkcaxcmN9SN3SU5Zu4KCcJY4bQqwepE18CFBuz6GNs,10676
|
|
8
|
+
rucio/cli/config.py,sha256=whh1pJ3fwaZNLlBueQJXKvtDJWu3iLddWsyD5ESS3Zo,2616
|
|
9
|
+
rucio/cli/did.py,sha256=AQb6zdqTahXE6xNMKgyCbPdpLNSNvsNE7qFrMj4DvKE,8770
|
|
10
|
+
rucio/cli/download.py,sha256=nltAf8nm8P6nrfIu0CUveY4YM6oL5nSR3w6yS4qBbw0,6248
|
|
11
|
+
rucio/cli/lifetime_exception.py,sha256=aKYYb6j7ZmazJQjg6fl5JSXggDGXME6SXrtz_blHC_Y,1468
|
|
12
|
+
rucio/cli/replica.py,sha256=I02DJ7vDVt0OFhx3fqfBL5TpYwGGG3fjDKKg1LUfOTI,8079
|
|
13
|
+
rucio/cli/rse.py,sha256=tVZ21Z8mp0JK0D9L85IxcTMRwdMFV72L-5i106w106M,11079
|
|
14
|
+
rucio/cli/rule.py,sha256=o6wpot_zLfgVT9GFwaShiuT_a1tj-VOtlT6LpZHzRRE,8690
|
|
15
|
+
rucio/cli/scope.py,sha256=p13xqbUwxem-Z5bxz9AoWf-5U4EeTrsRIDSiqGMsh3o,1514
|
|
16
|
+
rucio/cli/subscription.py,sha256=j9z07LDaxBf7YKXC_uohSocjJGx8FVHePZrq8btRrlE,4149
|
|
17
|
+
rucio/cli/upload.py,sha256=29gJGfb7jsiA6-UwPCSg1kGZu-OJ-bdxUZr27S2mJEM,3237
|
|
18
|
+
rucio/cli/utils.py,sha256=uICXhVjsmnRpwvgY7FLxTvyC_88BgH5I_v7iutix4eI,9739
|
|
19
|
+
rucio/cli/bin_legacy/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
20
|
+
rucio/cli/bin_legacy/rucio.py,sha256=cDUeMb_K38jGWmPM4oZh-s4iKLbwnEAvgGMq8wHec3g,144678
|
|
21
|
+
rucio/cli/bin_legacy/rucio_admin.py,sha256=Lw_fYlTUG-5fcTRpgcdHxDN63jyaTjZRbx8DaciQYAc,140847
|
|
5
22
|
rucio/client/__init__.py,sha256=0-jkSlrJf-eqbN4swA5a07eaWd6_6JXPQPLXMs4A3iI,660
|
|
6
|
-
rucio/client/accountclient.py,sha256=
|
|
23
|
+
rucio/client/accountclient.py,sha256=VqCtgecQA-kt33On7lm3dmab5LyLSXIvOVH3akTIzvU,17271
|
|
7
24
|
rucio/client/accountlimitclient.py,sha256=RcA9ZjUz3uhpYlBROi9j97_0Fxd9TlmDaWv_3I14s_g,6479
|
|
8
|
-
rucio/client/baseclient.py,sha256=
|
|
9
|
-
rucio/client/client.py,sha256=
|
|
25
|
+
rucio/client/baseclient.py,sha256=vV-TxsIzNa0vjRisy1SSGs14epCAyx_wnYyJz5CmnlA,49724
|
|
26
|
+
rucio/client/client.py,sha256=uvGYQ9DZ1QjtfZ9NzN2nflPZOGNG5r4wOER7wSg-90g,4281
|
|
10
27
|
rucio/client/configclient.py,sha256=sCnzWOnGSYWktYud-OUnc8qVaDMiSq9I7N4uuqcTz0Y,4685
|
|
11
28
|
rucio/client/credentialclient.py,sha256=MCnuL966HPJwgxNEnk597SO7xwPEhnAIdEOeH75SOUU,2101
|
|
12
|
-
rucio/client/didclient.py,sha256=
|
|
29
|
+
rucio/client/didclient.py,sha256=ojTV4Ox-WurCpotKCTxnc5gbHhdPIIVnOQSz1veco38,32738
|
|
13
30
|
rucio/client/diracclient.py,sha256=40XTub2kwdV4LMFOcJkly-y_622wkGlR6vefTvbULRk,2397
|
|
14
|
-
rucio/client/downloadclient.py,sha256=
|
|
31
|
+
rucio/client/downloadclient.py,sha256=PXp_Tp2BxjVQPXltLaPUCs3oS3MZJBGLTRJg3ydFRm4,89259
|
|
15
32
|
rucio/client/exportclient.py,sha256=DJFJkBPYUmLTgHv6B5DAElIMhkpPl0Sz6OpTNM7WA50,1625
|
|
16
33
|
rucio/client/fileclient.py,sha256=NICwXZdIKIySYMIiiqz9nR8sQTiLjcWdk0RzAQaOD0U,1667
|
|
17
34
|
rucio/client/importclient.py,sha256=YMFZH79svGbl-riRSx4jeNGq7TVPiT57A_rcVT8qAGk,1516
|
|
@@ -19,188 +36,165 @@ rucio/client/lifetimeclient.py,sha256=JHeuOE81Nj7N_iwqDfpJzZwat6nMgSA_jNUEqaqzEU
|
|
|
19
36
|
rucio/client/lockclient.py,sha256=Fc-BVQV_nAHM8YmxN1UFqHutEl-E8uxnSlsjH7Uxjj4,4276
|
|
20
37
|
rucio/client/metaconventionsclient.py,sha256=1Wwh3y45zhr9X05MYGq5Gph85vIUKvWDJjRYvQpCSLw,5195
|
|
21
38
|
rucio/client/pingclient.py,sha256=rwb02jpKJnEioZ-lQRf04Drp_sRtXC36WsubNKtEvpg,1390
|
|
22
|
-
rucio/client/replicaclient.py,sha256=
|
|
39
|
+
rucio/client/replicaclient.py,sha256=KfACI-Pkhi_bfN5hmUWvIcnq7s6C9Q9cmKQBSUG6KYE,19351
|
|
23
40
|
rucio/client/requestclient.py,sha256=L4meNVrb9jOuQjhALtBMgW0HKioMGfYlph4zEdjpreM,4615
|
|
24
|
-
rucio/client/
|
|
41
|
+
rucio/client/richclient.py,sha256=kP6cHQsvCtKEl1c2fycqpDjfLrMAzaMxuZA_kWddm08,10111
|
|
42
|
+
rucio/client/rseclient.py,sha256=gRW9uEYDYqi73Ezhheb3sLlGaimJCOm85EgOO9jeLWI,29711
|
|
25
43
|
rucio/client/ruleclient.py,sha256=lppOYILWLOPBIcq8Qv-8lp9iTVjLGUMYFto3PYrGwYY,13137
|
|
26
44
|
rucio/client/scopeclient.py,sha256=CfJyM86I8BKfXLnbUOD_KjxuqMD5B0I8AQLiuNKTjag,3238
|
|
27
45
|
rucio/client/subscriptionclient.py,sha256=GgSFlube82Xv87GQ58ouWthjxsbLalWcXQywrNmh_M4,8207
|
|
28
46
|
rucio/client/touchclient.py,sha256=i_cvIAbwH9MLF2hE1o_I5w2M9jACykEFGdyypHmyBlA,2759
|
|
29
|
-
rucio/client/uploadclient.py,sha256=
|
|
47
|
+
rucio/client/uploadclient.py,sha256=ux32JMceTNwZ82UL_wQpUJbI7USgMIk4ZYjmiD5KNuM,50407
|
|
30
48
|
rucio/common/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
31
|
-
rucio/common/
|
|
32
|
-
rucio/common/
|
|
33
|
-
rucio/common/
|
|
49
|
+
rucio/common/bittorrent.py,sha256=cpz-axibeHmO-Nk3-RH5JTvF6PjvmrRY0rOCgRjmaHk,8834
|
|
50
|
+
rucio/common/cache.py,sha256=8jfk6lB_KfwV_ZQBRngTYLwJ4zpDAg1Q70o5LRGR4AU,3420
|
|
51
|
+
rucio/common/checksum.py,sha256=nSqjY8TdDGohpAzcEM2fjv4FPdOKmKr_3U27HalKkoY,5254
|
|
52
|
+
rucio/common/client.py,sha256=qhkg0JETEQR0abTQ1m0iYE5wOzfEm-s1AABFgbxqlSA,3957
|
|
53
|
+
rucio/common/config.py,sha256=7N_ck_DHQX5v9q9NU6-6PM3qF0WjyQb3XLh8ZDM9I9A,24425
|
|
54
|
+
rucio/common/constants.py,sha256=5gLwj_VCDrNegcMrQbt7ozdannSYqP1_gDrEE8YVPmI,7736
|
|
34
55
|
rucio/common/constraints.py,sha256=MrdiAwKyoaZGfspUWX_53XS2790nXMSMg1JYmTO_ciQ,726
|
|
35
|
-
rucio/common/didtype.py,sha256=
|
|
36
|
-
rucio/common/exception.py,sha256=
|
|
37
|
-
rucio/common/extra.py,sha256=
|
|
38
|
-
rucio/common/logging.py,sha256=
|
|
39
|
-
rucio/common/pcache.py,sha256=
|
|
40
|
-
rucio/common/plugins.py,sha256=
|
|
41
|
-
rucio/common/policy.py,sha256=
|
|
56
|
+
rucio/common/didtype.py,sha256=dYYLIxcOjIHaDBAYSoCpmhZ-O2GTKxIi66jHiXtuVRY,8010
|
|
57
|
+
rucio/common/exception.py,sha256=U4Jnpv8QTkNmMG2scV4bYNzOqLsMnfrmiGeSH-P_B_g,34555
|
|
58
|
+
rucio/common/extra.py,sha256=IE01275vTJobyNiYbptU9NmsUl2Ga_92FSoOODV8Qfk,1054
|
|
59
|
+
rucio/common/logging.py,sha256=_G1QDFpPLghz2VXOjdhC7j-TtZBxmPJsyJtztW7mf68,15874
|
|
60
|
+
rucio/common/pcache.py,sha256=pgIfBJxXYPWlD70l8g3-CVTizk_UfzaZxE27NhTvq6w,47001
|
|
61
|
+
rucio/common/plugins.py,sha256=O6Snuhm2Tf2lyTA3cCBzSJB27RX1MY_r9mEAccrRCj4,7283
|
|
62
|
+
rucio/common/policy.py,sha256=2ByqoQQp4jpHdnnpq4-Ie7GwHslP8S9Zfu8qOqgzukU,3490
|
|
42
63
|
rucio/common/stomp_utils.py,sha256=3GTiRTJ0roe5OX_wgkVwOJYAIhGgYbhiROHc2M8LQT8,5414
|
|
43
64
|
rucio/common/stopwatch.py,sha256=_9zxoLjr8A0wUDJsljK4vZNDCI-dIOgpcxXiCNVJcHU,1641
|
|
44
|
-
rucio/common/test_rucio_server.py,sha256=
|
|
45
|
-
rucio/common/types.py,sha256=
|
|
46
|
-
rucio/common/utils.py,sha256=
|
|
47
|
-
rucio/common/dumper/__init__.py,sha256=
|
|
48
|
-
rucio/common/dumper/consistency.py,sha256=
|
|
49
|
-
rucio/common/dumper/data_models.py,sha256=
|
|
50
|
-
rucio/common/dumper/path_parsing.py,sha256=
|
|
51
|
-
rucio/common/schema/__init__.py,sha256=
|
|
52
|
-
rucio/common/schema/
|
|
53
|
-
rucio/common/schema/
|
|
54
|
-
rucio/common/schema/domatpc.py,sha256=SNk4sr0r16YJINYLjNKRtvRGweJJUwRU0V-egmWFp-s,15036
|
|
55
|
-
rucio/common/schema/escape.py,sha256=GSURW12MB6Orknj1MYeH1lVJCiPbFgpFLXQa_ojLmAE,15975
|
|
56
|
-
rucio/common/schema/generic.py,sha256=Ri7KxalttiYbBKSkM68ifynJwGu6pDmhSw-AWrLPK78,16289
|
|
57
|
-
rucio/common/schema/generic_multi_vo.py,sha256=pHX0xGiCuR5llKteUITCbM2g2NC8kkqXk0Q1SEaSpwI,15513
|
|
58
|
-
rucio/common/schema/icecube.py,sha256=LOg72FVMclYLTFlYHksr6S31HzPf8JoYpQaEeBsaFzY,15326
|
|
65
|
+
rucio/common/test_rucio_server.py,sha256=2teFpN5Pthp-zQt1_aErOURDTgOhFP9GKdEr1NMmc4o,5085
|
|
66
|
+
rucio/common/types.py,sha256=THfYyGKy7KUEvkBgAXSkdI2SxZBlsSr6E3sF9OkEms4,11764
|
|
67
|
+
rucio/common/utils.py,sha256=WOwv0mQXlcO9pVLF-OelWLLYz7zViycLizVfDcZI5kQ,61691
|
|
68
|
+
rucio/common/dumper/__init__.py,sha256=V7D7KNmqPeVfPrBmfZDV9VfZWBiOMwLaPLtcogf31CI,10930
|
|
69
|
+
rucio/common/dumper/consistency.py,sha256=k1MLD9RAVBR7uBZxjuuQsD8PzbXzOSd6vdWytDweUx4,17962
|
|
70
|
+
rucio/common/dumper/data_models.py,sha256=ckjUy7R9ftmsSCjC1kF0Ccpjq53Eba4EWWlpHzGKI8M,11184
|
|
71
|
+
rucio/common/dumper/path_parsing.py,sha256=Y0GI-xn9VShaR_wFSrzA8yIm0jrjGVAJ5euua0V3enU,2394
|
|
72
|
+
rucio/common/schema/__init__.py,sha256=2nmfxV4ps9J030fUoSiJs4OQCxiEk77rPrNeGk9xgZs,7800
|
|
73
|
+
rucio/common/schema/generic.py,sha256=NkjdxVutlRm-7AvgQf9bTW0Gb0AomuiV1iwfXOPNmIQ,15811
|
|
74
|
+
rucio/common/schema/generic_multi_vo.py,sha256=Owk9JMxycAcayTDnx-9kiXZSRBHC_jPaq79jjE1FiB0,15035
|
|
59
75
|
rucio/core/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
60
76
|
rucio/core/account.py,sha256=T0Pg7HxU7TYx2MWRfgsUgHYh6hBOZZa4mKQLu_iqUIc,16401
|
|
61
77
|
rucio/core/account_counter.py,sha256=DjxaZfyXKY4VJ7fQgLywkaB4882PIX27f9FXRv0UdbM,7253
|
|
62
|
-
rucio/core/account_limit.py,sha256=
|
|
63
|
-
rucio/core/authentication.py,sha256=
|
|
64
|
-
rucio/core/config.py,sha256=
|
|
65
|
-
rucio/core/credential.py,sha256
|
|
66
|
-
rucio/core/did.py,sha256=
|
|
78
|
+
rucio/core/account_limit.py,sha256=eo8IfP8b7HI_3Kd7_ePwIJB3tlcRuQ-OM4-0EPyTc7w,16018
|
|
79
|
+
rucio/core/authentication.py,sha256=Bjd3vcizorMVH73sXFUFQ1FSKd0s55jH9GZ70QL3Y1I,21031
|
|
80
|
+
rucio/core/config.py,sha256=iEfl-64i7HDRO5Do1hQ4ibwCTV5AUlXocWrdWNF-6hw,14197
|
|
81
|
+
rucio/core/credential.py,sha256=64OJ-cpFcDQZyot4y_kEA6rsY4zvMLTmTKDQp9FvM7k,8519
|
|
82
|
+
rucio/core/did.py,sha256=_C1Uk0ZjSCKoIf0mIBWLQxsUs9iAF9hqrtpYmEtQUTE,114628
|
|
67
83
|
rucio/core/dirac.py,sha256=WdceDXJrFIPcrvsktBSpUrxXsWjMNgrwHtaAkYt9C6c,9785
|
|
68
84
|
rucio/core/distance.py,sha256=jfmbcZUtFWDp3DaOw_o2cZGwlTIywpAtOFUmfBF-_N0,6001
|
|
69
85
|
rucio/core/exporter.py,sha256=4ZODnaVaupBdM2ILEGnQkqBtNbnJ3Ek9mSqJr41DxpA,1875
|
|
70
86
|
rucio/core/heartbeat.py,sha256=xesayFiO_mFsfvbmaGf0pLyeCTW0dZ4LHypOnDhzlbk,11380
|
|
71
|
-
rucio/core/identity.py,sha256=
|
|
72
|
-
rucio/core/importer.py,sha256=
|
|
73
|
-
rucio/core/lifetime_exception.py,sha256=
|
|
74
|
-
rucio/core/lock.py,sha256=
|
|
75
|
-
rucio/core/message.py,sha256=
|
|
87
|
+
rucio/core/identity.py,sha256=BvmZ5JCXYe2WakpTZVKGu3hcPBYaIGg7x-R5UeplNIg,12112
|
|
88
|
+
rucio/core/importer.py,sha256=0qnKboEBU8Xt8siaC3VmJtxFOh5f2OYC5W2aAO57MDo,14267
|
|
89
|
+
rucio/core/lifetime_exception.py,sha256=1Mn4U2OBAIrT7Rnc6bA9ATtVTwxAkbJ0FLC8ZdZYEdc,15321
|
|
90
|
+
rucio/core/lock.py,sha256=frlux8PBcoagG3vir0sWvq_yCPbXuzarfSUPpsMLjJM,23368
|
|
91
|
+
rucio/core/message.py,sha256=r1IfYtelXh7rHNWL_v9jLtsayJjq2vejHQivdNlog2w,10361
|
|
76
92
|
rucio/core/meta_conventions.py,sha256=E7vDZdlvN1r6RZ6zh9RKwEoxQ-Q5imm7GY3-Ywzg3mY,8599
|
|
77
|
-
rucio/core/monitor.py,sha256=
|
|
78
|
-
rucio/core/naming_convention.py,sha256=
|
|
79
|
-
rucio/core/nongrid_trace.py,sha256=
|
|
80
|
-
rucio/core/oidc.py,sha256=
|
|
81
|
-
rucio/core/quarantined_replica.py,sha256=
|
|
82
|
-
rucio/core/replica.py,sha256=
|
|
83
|
-
rucio/core/replica_sorter.py,sha256=
|
|
84
|
-
rucio/core/request.py,sha256=
|
|
85
|
-
rucio/core/rse.py,sha256=
|
|
86
|
-
rucio/core/rse_counter.py,sha256=
|
|
87
|
-
rucio/core/rse_expression_parser.py,sha256=
|
|
88
|
-
rucio/core/rse_selector.py,sha256=
|
|
89
|
-
rucio/core/rule.py,sha256=
|
|
90
|
-
rucio/core/rule_grouping.py,sha256=
|
|
91
|
-
rucio/core/scope.py,sha256=
|
|
92
|
-
rucio/core/subscription.py,sha256=
|
|
93
|
-
rucio/core/topology.py,sha256=
|
|
94
|
-
rucio/core/trace.py,sha256=
|
|
95
|
-
rucio/core/transfer.py,sha256=
|
|
93
|
+
rucio/core/monitor.py,sha256=uFEw4Lc5kS7MDT-UifmmYca2Z43O8mnmE9yJ_EWkQaY,16159
|
|
94
|
+
rucio/core/naming_convention.py,sha256=b4kxVLnEhbn5wlY-k8m20FLoJTKSrsGzCMDm3UfQzkQ,6204
|
|
95
|
+
rucio/core/nongrid_trace.py,sha256=ZKdnOXTMQpviGiW8xa48NswEHFGbTGXWo3xbovdVH34,5186
|
|
96
|
+
rucio/core/oidc.py,sha256=_Wy_3QSN372eVanfiEcb45AEI9Rm2ZVTv2JgmHE-3KI,70564
|
|
97
|
+
rucio/core/quarantined_replica.py,sha256=MKKn1QF5kkXLB-z_K_DJoVtksE1sSXS_WJ44NekcaZc,8323
|
|
98
|
+
rucio/core/replica.py,sha256=VrU7LY1EisJjsx1nyo22vjq9u2cJTCfNVGfRgxaYxDE,185491
|
|
99
|
+
rucio/core/replica_sorter.py,sha256=ONfs4G6fo0JGZ70pqDKT4k7CSRxW82LhCZnQHskJhaU,14993
|
|
100
|
+
rucio/core/request.py,sha256=5UOTb40KVMKQlEOYIoob7xkaLmsY7F-4PrK4Gw4V6I4,120385
|
|
101
|
+
rucio/core/rse.py,sha256=moRct05xU8362fSrmvSEfJRTpDQWOk7xAPO602gM8ds,70966
|
|
102
|
+
rucio/core/rse_counter.py,sha256=5N3k5X6p-4PkDsNz-8TXnAWeU2oj8ti4epRDLJj3FWM,6093
|
|
103
|
+
rucio/core/rse_expression_parser.py,sha256=txTYmddSOqdFxia_wkLXZMEtw2SoyOWnhOmzbhtdbsk,15511
|
|
104
|
+
rucio/core/rse_selector.py,sha256=dndc9d0kXMBCnrMIOBmHMxNz1i-2Z-sw9_LL2xLzN58,14597
|
|
105
|
+
rucio/core/rule.py,sha256=ohJWVfa4LT9urCZ6uDLNfEjNeLIMnSdsXnf1xo3ElfA,208930
|
|
106
|
+
rucio/core/rule_grouping.py,sha256=OLxWg2ms4CtVSKY3HYts43lCB8HDAlZ2i0dJ0a2_UpU,96103
|
|
107
|
+
rucio/core/scope.py,sha256=seNIkdilDVilOvA0IQstLeUBU7DrkDPzxW63rtDmMnI,5910
|
|
108
|
+
rucio/core/subscription.py,sha256=i1zgc2FnceDgrkYzjMFRTTDvWlFssvv_qHgnkJyR_NY,16407
|
|
109
|
+
rucio/core/topology.py,sha256=qErGVrTv4R77G_h8u4bW3lXEw8mL7sZo1KQR5lLW0dw,19282
|
|
110
|
+
rucio/core/trace.py,sha256=QNulQ9jYokenGMd_54OWT-RUEhgGBvGzGZ7kh9T2LfA,13582
|
|
111
|
+
rucio/core/transfer.py,sha256=XAv_BPvkTqMl7teoyh3aj9W7zKmjBODG62-sqGaQGSk,64820
|
|
96
112
|
rucio/core/vo.py,sha256=mofxN5QO9ojqg0TXK9QgIm9UqqJV5qlocpEeOJ1_aaA,5915
|
|
97
|
-
rucio/core/volatile_replica.py,sha256=
|
|
113
|
+
rucio/core/volatile_replica.py,sha256=KvYcu6Lv9EOWxG3Y-yTwVUY5Taq6Zl9CHjRQPiFrYBg,5508
|
|
98
114
|
rucio/core/did_meta_plugins/__init__.py,sha256=dBkDWr3PwemYSekYvOZtWVgRHAHBHkC57XlII5Oja-k,11950
|
|
99
115
|
rucio/core/did_meta_plugins/did_column_meta.py,sha256=MGGXyGeHt5TbVteYo60SJ_03isyuMUKLF1lgsh1O420,17556
|
|
100
116
|
rucio/core/did_meta_plugins/did_meta_plugin_interface.py,sha256=-2qYgyHNpglN1-zgLnewk0tlUFgj90MtkzY3RvOZNQw,4932
|
|
101
|
-
rucio/core/did_meta_plugins/
|
|
102
|
-
rucio/core/did_meta_plugins/
|
|
103
|
-
rucio/core/did_meta_plugins/
|
|
104
|
-
rucio/core/did_meta_plugins/
|
|
105
|
-
rucio/core/
|
|
106
|
-
rucio/core/permission/
|
|
107
|
-
rucio/core/permission/
|
|
108
|
-
rucio/core/permission/
|
|
109
|
-
rucio/core/permission/generic.py,sha256=UimFjJSfhqVZmT71eWtgfwm6s4jr-6sng78bSrSpUaM,48439
|
|
110
|
-
rucio/core/permission/generic_multi_vo.py,sha256=yRSDEJnhJVDBNMkwtkXOJ-xJftiCTGFgjvcHvRgVEoI,45926
|
|
117
|
+
rucio/core/did_meta_plugins/elasticsearch_meta.py,sha256=YHI7felHDHzFoOr-FKxoWRNf7TeewdNQId0HtwmrUFs,15597
|
|
118
|
+
rucio/core/did_meta_plugins/filter_engine.py,sha256=_J5hLq5-i900C3In1LoTH5-GqPeRQ4RyQv6pa1y8QpA,33375
|
|
119
|
+
rucio/core/did_meta_plugins/json_meta.py,sha256=yurzU09OP0eCl3JjoHFbKJ0TK0svDMEXsWFMYbnM7LQ,9918
|
|
120
|
+
rucio/core/did_meta_plugins/mongo_meta.py,sha256=Vg8SAWc-KTMu8D6unHqrAyhuPUUpKNp39pEeOgYJY5g,8535
|
|
121
|
+
rucio/core/did_meta_plugins/postgres_meta.py,sha256=lqP9lcit49zDS1L9oc8MCjkkrMnizxQ6GszPFZQCSbQ,14262
|
|
122
|
+
rucio/core/permission/__init__.py,sha256=qq3XPYfpYmqHLhS9iuJCewpxjZoNfGz9_dF16fHMIg4,6193
|
|
123
|
+
rucio/core/permission/generic.py,sha256=qRb8o-EjBoJ3dPN9ZNtQrZaMfZg4DydKzrFLVbg52Xc,48166
|
|
124
|
+
rucio/core/permission/generic_multi_vo.py,sha256=w1A6o4lnon8KIwk4io5UM9dbl3ujrBlumB6BJe9nkpM,45653
|
|
111
125
|
rucio/daemons/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
112
|
-
rucio/daemons/common.py,sha256=
|
|
126
|
+
rucio/daemons/common.py,sha256=wYloaZyPl2finMAWYC5OFr7W3DPbsBFpWzerNJ04uLI,15550
|
|
113
127
|
rucio/daemons/abacus/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
114
128
|
rucio/daemons/abacus/account.py,sha256=I1rSanUNbmnrkH9VWYey4AmGimh2h4O5RHWJOg1oZew,4015
|
|
115
129
|
rucio/daemons/abacus/collection_replica.py,sha256=SPV9UYkpH77cnX8XdYXxLtbv7CTP_cIztOWGug6i8JE,4069
|
|
116
130
|
rucio/daemons/abacus/rse.py,sha256=ZJYwCZFErXdfCR9Rm399f_bS6JjgMiucm8rleFC69e8,3795
|
|
117
131
|
rucio/daemons/atropos/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
118
|
-
rucio/daemons/atropos/atropos.py,sha256=
|
|
119
|
-
rucio/daemons/auditor/__init__.py,sha256=
|
|
132
|
+
rucio/daemons/atropos/atropos.py,sha256=mJmVu6RKhPmY7Y6cGbopy5MN-0hTVyJW6x_0VUheqeY,10559
|
|
133
|
+
rucio/daemons/auditor/__init__.py,sha256=2MjdRtRRWxU4k-xUhn1XSM6wgGa8_7k-0gZIBZ4FtE4,10633
|
|
120
134
|
rucio/daemons/auditor/hdfs.py,sha256=TjYeVYm6_zrQEu9KPYrrHuPJ9yAYAEwuaPNmJFJEG5k,3071
|
|
121
|
-
rucio/daemons/auditor/srmdumps.py,sha256=
|
|
135
|
+
rucio/daemons/auditor/srmdumps.py,sha256=BsqWFwSKLhAffVuzWmOX36RgUmAi_o7Tn-GKIy_QFLU,11056
|
|
122
136
|
rucio/daemons/automatix/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
123
|
-
rucio/daemons/automatix/automatix.py,sha256
|
|
137
|
+
rucio/daemons/automatix/automatix.py,sha256=AO_r86-ZifrJwCetkCGGcJ0GakWcFhTbQvfKvipRTdI,10584
|
|
124
138
|
rucio/daemons/badreplicas/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
125
139
|
rucio/daemons/badreplicas/minos.py,sha256=GoBMqkr34zaU0KD-h4Bkuy9RDhDKCm2EtA9GPMIds_8,16063
|
|
126
140
|
rucio/daemons/badreplicas/minos_temporary_expiration.py,sha256=yxjKEfBhvOURENiVWirsoRp0PCL8UpUOcVlcVBn-hXU,8626
|
|
127
|
-
rucio/daemons/badreplicas/necromancer.py,sha256=
|
|
141
|
+
rucio/daemons/badreplicas/necromancer.py,sha256=Kkht0acpL4EFUcM8WAcKd_Y8JCyAiT756pJ4C9JIzkc,9816
|
|
128
142
|
rucio/daemons/bb8/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
129
143
|
rucio/daemons/bb8/bb8.py,sha256=AQ_VM-dI-xMfWITh5k9oOMieTrM9_pqtJwA0o-VE9wc,13025
|
|
130
144
|
rucio/daemons/bb8/common.py,sha256=HUtzjhLwosp-Mxs6ynwfpCQfYPNIoeej4s2WuO9zZ8c,27240
|
|
131
|
-
rucio/daemons/bb8/nuclei_background_rebalance.py,sha256=
|
|
132
|
-
rucio/daemons/bb8/t2_background_rebalance.py,sha256=
|
|
133
|
-
rucio/daemons/c3po/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
134
|
-
rucio/daemons/c3po/c3po.py,sha256=PysECYXccvpmbcZ03NGYPI0K9qg7WlBCzajuQ-60c8U,15600
|
|
135
|
-
rucio/daemons/c3po/algorithms/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
136
|
-
rucio/daemons/c3po/algorithms/simple.py,sha256=Uz9eVnD2hGxPzIIV2CwARbC_S034NflKdljRQ9-Gg9o,4836
|
|
137
|
-
rucio/daemons/c3po/algorithms/t2_free_space.py,sha256=1I9Qzxlzqv8YENhUkq74Rjpl1oeZFHILFNdcEXAWtAU,4870
|
|
138
|
-
rucio/daemons/c3po/algorithms/t2_free_space_only_pop.py,sha256=QBvWwnb-jargEPykXx2E9XN3BpisIGdmQ5rb-lPYt-Y,4993
|
|
139
|
-
rucio/daemons/c3po/algorithms/t2_free_space_only_pop_with_network.py,sha256=7yRHN5lsdSzS5D9OJ3dgS_t95iE3zJkggcRcKV-bkc4,12700
|
|
140
|
-
rucio/daemons/c3po/collectors/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
141
|
-
rucio/daemons/c3po/collectors/agis.py,sha256=6_Dpm77OI7OUDsIu7_38qhiIGeCeJX4VwQ5TrRlNUq4,3521
|
|
142
|
-
rucio/daemons/c3po/collectors/free_space.py,sha256=lTvCjMnqHeZwc9MBZpDpC40Ae5a5WhM33iIMUoJezeA,2576
|
|
143
|
-
rucio/daemons/c3po/collectors/jedi_did.py,sha256=UZnZRuLaAedZGGfinHoRK1XpFL1PbWLyq_bft4oH23s,1864
|
|
144
|
-
rucio/daemons/c3po/collectors/mock_did.py,sha256=Cj9cwCOUsoT3K1yfVZ70LxgR1MMBVcft3PeIYkZbTfs,1526
|
|
145
|
-
rucio/daemons/c3po/collectors/network_metrics.py,sha256=Sm019xGcEDlZSm225auGPo5gDHX9Nwho9Esp2SvSpOY,2237
|
|
146
|
-
rucio/daemons/c3po/collectors/workload.py,sha256=ncHeRCuvaFhm1_YSaiuJmLgbhD_MSLqx3naLPyqtbwg,4089
|
|
147
|
-
rucio/daemons/c3po/utils/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
148
|
-
rucio/daemons/c3po/utils/dataset_cache.py,sha256=vXoh48zPAEbvfgEn1AmH23MBqA9vcgk6n9F-Vxw_ef4,1670
|
|
149
|
-
rucio/daemons/c3po/utils/expiring_dataset_cache.py,sha256=60rxQ1dVCUgvgpAcsxPvWT3D9lPqLPuXknH-XjJ4LLA,1699
|
|
150
|
-
rucio/daemons/c3po/utils/expiring_list.py,sha256=bAkxa5TvzneOfl9sWfhHWlMPzmxZx9tv9S-YcEMlQtg,1632
|
|
151
|
-
rucio/daemons/c3po/utils/popularity.py,sha256=W_ZtSyDVZR0v7cp18x-RszAkUDJO0LDglCzcrXdR0VY,2597
|
|
152
|
-
rucio/daemons/c3po/utils/timeseries.py,sha256=ibprzC23ODUt5UUqUhhxbuK6Xi7pRV3Q_-NFMAD9BBw,2445
|
|
145
|
+
rucio/daemons/bb8/nuclei_background_rebalance.py,sha256=W3lkx6KMnnBiRrWW4WEqMhKPh2KGC5E82yFJg84Vaa4,6727
|
|
146
|
+
rucio/daemons/bb8/t2_background_rebalance.py,sha256=8oS1aBhh3jrBKDDF4U5UIt_a5BDuM2LW9uP4MLcx3Fk,6606
|
|
153
147
|
rucio/daemons/cache/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
154
148
|
rucio/daemons/cache/consumer.py,sha256=ZzBBs_EJtOFkBV3IhZo-tL65Hgp3yRS--YxuNrbwsm0,6956
|
|
155
149
|
rucio/daemons/conveyor/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
156
150
|
rucio/daemons/conveyor/common.py,sha256=HhruwAk-e8yYM-5L9Kebh46snjPbS4MCJ8UV5EkGrGM,26415
|
|
157
|
-
rucio/daemons/conveyor/finisher.py,sha256=
|
|
158
|
-
rucio/daemons/conveyor/poller.py,sha256=
|
|
151
|
+
rucio/daemons/conveyor/finisher.py,sha256=6DJt2RNwWHsUXVfAVIfHcX-SHQt4aQoLpOx4vHE-Lek,24748
|
|
152
|
+
rucio/daemons/conveyor/poller.py,sha256=ui52xp_cMXNmjSt8MRyJc4mKQrS4VQMyFdqamKws5aU,16633
|
|
159
153
|
rucio/daemons/conveyor/preparer.py,sha256=xwpjQgSLY9zqOyc6pdUbV5-eb_nWMEAiOD_F9nYfXcs,8022
|
|
160
|
-
rucio/daemons/conveyor/receiver.py,sha256=
|
|
161
|
-
rucio/daemons/conveyor/stager.py,sha256=
|
|
162
|
-
rucio/daemons/conveyor/submitter.py,sha256=
|
|
154
|
+
rucio/daemons/conveyor/receiver.py,sha256=w-3hyTse8XNNowmtExsX3ztMh8dNVG28dsCeIm2TbFE,8820
|
|
155
|
+
rucio/daemons/conveyor/stager.py,sha256=rrZ-nfPOQMHZzFnOi18JM6rnHlEQpOsPpNM4M89o_gg,4282
|
|
156
|
+
rucio/daemons/conveyor/submitter.py,sha256=CflHNigc7gx_3LrEQpL8RRqW0MDJ86BbB6qN2Rhf0u4,17146
|
|
163
157
|
rucio/daemons/conveyor/throttler.py,sha256=5jJ156GHDaGhF85BRj7CGjizpgobAhqf-ZaUiWHdDjU,22345
|
|
164
158
|
rucio/daemons/follower/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
165
159
|
rucio/daemons/follower/follower.py,sha256=ViDKnoDtCHQsxLd78uxJKp4tHeKxRebe74jsnK-uUmU,3438
|
|
166
160
|
rucio/daemons/hermes/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
167
|
-
rucio/daemons/hermes/hermes.py,sha256=
|
|
161
|
+
rucio/daemons/hermes/hermes.py,sha256=Z3vKranH8260SOnk76ELiPSANnX8sBBpxpa6hmJTWro,29781
|
|
168
162
|
rucio/daemons/judge/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
169
163
|
rucio/daemons/judge/cleaner.py,sha256=yCv9prY-L_rpkJE2YhkKcCtaDgs2SMGS9HKi_O1hKFM,5956
|
|
170
|
-
rucio/daemons/judge/evaluator.py,sha256=
|
|
164
|
+
rucio/daemons/judge/evaluator.py,sha256=XfhX5LfqYrP_T_9oeTv5idMUteCFJGnDpaA182hlGFM,7415
|
|
171
165
|
rucio/daemons/judge/injector.py,sha256=XPW1rHejISjRpVv7Aqts7B-IA8vfsQfLL9ruHfMRqDk,6578
|
|
172
166
|
rucio/daemons/judge/repairer.py,sha256=8QxdS5UHtI_j_atIDKQi5NjHGDsiIkN2nQCFhL4l1qQ,5507
|
|
173
167
|
rucio/daemons/oauthmanager/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
174
|
-
rucio/daemons/oauthmanager/oauthmanager.py,sha256=
|
|
168
|
+
rucio/daemons/oauthmanager/oauthmanager.py,sha256=Y7mdiUQOsXKvv2PoPu3yhUhsQwllyoIjXga5KU3acqU,8820
|
|
175
169
|
rucio/daemons/reaper/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
176
|
-
rucio/daemons/reaper/dark_reaper.py,sha256=
|
|
177
|
-
rucio/daemons/reaper/reaper.py,sha256=
|
|
170
|
+
rucio/daemons/reaper/dark_reaper.py,sha256=hpng4l10T-B3te3QlTPmc4nnUXlBDH3mtTm-cCWLDDA,11491
|
|
171
|
+
rucio/daemons/reaper/reaper.py,sha256=bwkvfnI3RO1pLHSXyA1n2XP2A0YXjKMDO1D2fjpKzV4,36675
|
|
178
172
|
rucio/daemons/replicarecoverer/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
179
173
|
rucio/daemons/replicarecoverer/suspicious_replica_recoverer.py,sha256=kkB-2jAcSm-FPqT3Pr6Uwf0tmDp5dd-_Mfj7jBo82cE,35860
|
|
180
174
|
rucio/daemons/rsedecommissioner/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
181
|
-
rucio/daemons/rsedecommissioner/config.py,sha256=
|
|
182
|
-
rucio/daemons/rsedecommissioner/rse_decommissioner.py,sha256=
|
|
175
|
+
rucio/daemons/rsedecommissioner/config.py,sha256=pK-JwhFf-b0VKZ15CvZH9ncA_UG5w1-pHxYuycOYtNg,2780
|
|
176
|
+
rucio/daemons/rsedecommissioner/rse_decommissioner.py,sha256=m-V_tHuHhXevQafBwS6dNAHgL14wUjghsvZH9BCJ2pg,10457
|
|
183
177
|
rucio/daemons/rsedecommissioner/profiles/__init__.py,sha256=AN6POeAUbMQxpUhAGIOvK_CDsBWCAQGhmrpODolHOWg,863
|
|
184
178
|
rucio/daemons/rsedecommissioner/profiles/atlas.py,sha256=fyqBwIesYHHPh3KZ4U62E4L90QtNbWvWwuW9B3gYj-I,2232
|
|
185
|
-
rucio/daemons/rsedecommissioner/profiles/generic.py,sha256=
|
|
186
|
-
rucio/daemons/rsedecommissioner/profiles/types.py,sha256=
|
|
179
|
+
rucio/daemons/rsedecommissioner/profiles/generic.py,sha256=FVLe0X2LvY9I8T4ZN2f65CbYj2Wvpf0voUq3rIQdIEg,16324
|
|
180
|
+
rucio/daemons/rsedecommissioner/profiles/types.py,sha256=VnD2AMGLfY_clksZR4Vyf5pDv7ujUU4okGHet3gbOU4,3016
|
|
187
181
|
rucio/daemons/storage/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
188
182
|
rucio/daemons/storage/consistency/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
189
|
-
rucio/daemons/storage/consistency/actions.py,sha256=
|
|
183
|
+
rucio/daemons/storage/consistency/actions.py,sha256=U84k6493ZsHn1fOTGvSoUUzg0p1jgCd3MS4F428BCXg,31815
|
|
190
184
|
rucio/daemons/tracer/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
191
|
-
rucio/daemons/tracer/kronos.py,sha256=
|
|
185
|
+
rucio/daemons/tracer/kronos.py,sha256=B7MFo0JAlBCG2VjqeLAYjC6Ix6wNqLOb5F3I41XSxZw,24291
|
|
192
186
|
rucio/daemons/transmogrifier/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
193
187
|
rucio/daemons/transmogrifier/transmogrifier.py,sha256=9-WC2Qcm0ccIBrVJ08VjF2bTemhEUkruMwKF6qnkICg,30664
|
|
194
188
|
rucio/daemons/undertaker/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
195
189
|
rucio/daemons/undertaker/undertaker.py,sha256=0X1usPC7DFExqVqedZO-EeTcoSrgGTMJXSRB0eHQMt4,5254
|
|
196
190
|
rucio/db/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
197
191
|
rucio/db/sqla/__init__.py,sha256=nVXdqNgRs6AXgN7cVM3MAdHZZDX1l0FdVEabWEtMbbw,2506
|
|
198
|
-
rucio/db/sqla/constants.py,sha256=
|
|
199
|
-
rucio/db/sqla/models.py,sha256
|
|
192
|
+
rucio/db/sqla/constants.py,sha256=vHAlRwc-YGdskoPXM9q4yxYyvqeOEQ4inleQpgr7ue8,4226
|
|
193
|
+
rucio/db/sqla/models.py,sha256=JfbV2EmA0kCDMVaYDxPjfhfZQuIXq_bh9ElEqJtZFhU,111752
|
|
200
194
|
rucio/db/sqla/sautils.py,sha256=X4gHWCkqvDlJEEHmhO2txV94__kvS8M9Hb1aJvbLaUg,2000
|
|
201
|
-
rucio/db/sqla/session.py,sha256=
|
|
202
|
-
rucio/db/sqla/types.py,sha256=
|
|
203
|
-
rucio/db/sqla/util.py,sha256=
|
|
195
|
+
rucio/db/sqla/session.py,sha256=3FMwaJ8mcVZWBI8CiyY1tUebwhQCuPC3-24x4cQkMoM,19181
|
|
196
|
+
rucio/db/sqla/types.py,sha256=VBCDsSozh2mUNwmmBNbA5xZHkgU0FMXwRBmsc33YUtE,6090
|
|
197
|
+
rucio/db/sqla/util.py,sha256=eynMB_GsoWTO6XJfIsoeUFzJqoyRGXcgSSY6B8QQBek,22583
|
|
204
198
|
rucio/db/sqla/migrate_repo/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
205
199
|
rucio/db/sqla/migrate_repo/env.py,sha256=rSNoSvBSykAbjBXvQ3jpsN7MDr0xfYipdRg3VS42ji0,3545
|
|
206
200
|
rucio/db/sqla/migrate_repo/versions/01eaf73ab656_add_new_rule_notification_state_progress.py,sha256=rCIOzEnPJvd3uGqp-Ks-_KQNFoMhrLPWNXZUjSFbIlY,3340
|
|
@@ -211,7 +205,7 @@ rucio/db/sqla/migrate_repo/versions/13d4f70c66a9_introduce_transfer_limits.py,sh
|
|
|
211
205
|
rucio/db/sqla/migrate_repo/versions/140fef722e91_cleanup_distances_table.py,sha256=rt_v1W5OM9X4GSgihEU6deX-rWtLlu9SEnMDhf0BFa0,3659
|
|
212
206
|
rucio/db/sqla/migrate_repo/versions/14ec5aeb64cf_add_request_external_host.py,sha256=-1cmzs6sWw3keF_0ykvX8q4XACT9s7Cct_DXus9diRE,1548
|
|
213
207
|
rucio/db/sqla/migrate_repo/versions/156fb5b5a14_add_request_type_to_requests_idx.py,sha256=U7HJRXPtYGaxukC1lSDi4MoCnBa1PXrqQTHXNvPHIA0,2291
|
|
214
|
-
rucio/db/sqla/migrate_repo/versions/1677d4d803c8_split_rse_availability_into_multiple.py,sha256=
|
|
208
|
+
rucio/db/sqla/migrate_repo/versions/1677d4d803c8_split_rse_availability_into_multiple.py,sha256=qu2sQlAv3dL1HdXga2SrFI7WPX6THzx4WNdHRD9vbs8,2816
|
|
215
209
|
rucio/db/sqla/migrate_repo/versions/16a0aca82e12_create_index_on_table_replicas_path.py,sha256=9BYNLV7An0rK9mUPajVSq_SGwUk3p1Upz7_3oZSFBOI,1260
|
|
216
210
|
rucio/db/sqla/migrate_repo/versions/1803333ac20f_adding_provenance_and_phys_group.py,sha256=0kAR3NFcdrIBEiwKPw_lu3xT2aD6QQPutscD8GUb9D8,1678
|
|
217
211
|
rucio/db/sqla/migrate_repo/versions/1a29d6a9504c_add_didtype_chck_to_requests.py,sha256=huCVPROWcArtyqP7y8VhfsqwmKx8uDVBdrRPpx95-Rw,2675
|
|
@@ -243,6 +237,7 @@ rucio/db/sqla/migrate_repo/versions/2edee4a83846_add_source_to_requests_and_requ
|
|
|
243
237
|
rucio/db/sqla/migrate_repo/versions/2eef46be23d4_change_tokens_pk.py,sha256=vsp_wima3qUI6YfxFE8ij2veJuw3ZRaMrShUR75VyY4,1768
|
|
244
238
|
rucio/db/sqla/migrate_repo/versions/2f648fc909f3_index_in_rule_history_on_scope_name.py,sha256=kcC5B4k-Jj1Vn-XOvEOawOFaqk4wb65DVGdw6ZmjBBU,1308
|
|
245
239
|
rucio/db/sqla/migrate_repo/versions/3082b8cef557_add_naming_convention_table_and_closed_.py,sha256=C4MAeH2hIzsZ0gVCZXccIdqm7eEX7-BYffUrp2QCYds,3227
|
|
240
|
+
rucio/db/sqla/migrate_repo/versions/30d5206e9cad_increase_oauthrequest_redirect_msg_.py,sha256=D-VFLIOH-zswIfH0JOWjQZ2irKH1JSNoBGpzut1cGCg,1647
|
|
246
241
|
rucio/db/sqla/migrate_repo/versions/30fa38b6434e_add_index_on_service_column_in_the_message_table.py,sha256=ga4O2YW0cxfOFnqaEFdItAa2zP60ImPrhU1jzRYzEL4,2019
|
|
247
242
|
rucio/db/sqla/migrate_repo/versions/3152492b110b_added_staging_area_column.py,sha256=GxKaq4IiGk_6qp4cBKFHjE_iNkm6pOpJyB7kZpQcxJ4,3882
|
|
248
243
|
rucio/db/sqla/migrate_repo/versions/32c7d2783f7e_create_bad_replicas_table.py,sha256=RNLn1DobGnhBshlZSLDz2tu3WCHkEnmsPFGssUtpEds,2513
|
|
@@ -332,62 +327,62 @@ rucio/db/sqla/migrate_repo/versions/fb28a95fe288_add_replicas_rse_id_tombstone_i
|
|
|
332
327
|
rucio/db/sqla/migrate_repo/versions/fe1a65b176c9_set_third_party_copy_read_and_write_.py,sha256=ax1wpzHyCBVb42fZTiPplcB7XiI7MgdNxuvfQFwpIXw,1896
|
|
333
328
|
rucio/db/sqla/migrate_repo/versions/fe8ea2fa9788_added_third_party_copy_column_to_rse_.py,sha256=27lEJJERe1LwRZoHu3gw-Lsiiu_2W2lYKR_bzNOEitQ,1599
|
|
334
329
|
rucio/gateway/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
335
|
-
rucio/gateway/account.py,sha256=
|
|
336
|
-
rucio/gateway/account_limit.py,sha256=
|
|
337
|
-
rucio/gateway/authentication.py,sha256=
|
|
338
|
-
rucio/gateway/config.py,sha256=
|
|
339
|
-
rucio/gateway/credential.py,sha256=
|
|
340
|
-
rucio/gateway/did.py,sha256=
|
|
341
|
-
rucio/gateway/dirac.py,sha256=
|
|
342
|
-
rucio/gateway/exporter.py,sha256=
|
|
343
|
-
rucio/gateway/heartbeat.py,sha256=
|
|
344
|
-
rucio/gateway/identity.py,sha256=
|
|
345
|
-
rucio/gateway/importer.py,sha256=
|
|
346
|
-
rucio/gateway/lifetime_exception.py,sha256=
|
|
330
|
+
rucio/gateway/account.py,sha256=k8byAKjrBGnNj3Dune226eq4Vf0cLxXF9voe-Cen0oU,10706
|
|
331
|
+
rucio/gateway/account_limit.py,sha256=7tP7pYelmQsHvznJhBR7_Kd8qBzCrX7LrPZTgjjL3-U,12893
|
|
332
|
+
rucio/gateway/authentication.py,sha256=TMNNkUq_L_I6FOD0QsFE6Pr9tqvaBwVJ1T_NiLMzpvU,14308
|
|
333
|
+
rucio/gateway/config.py,sha256=xYS2ro5YK_7nFIphLQYKaYCJ2saFx_q72xuwBhmlMHA,9717
|
|
334
|
+
rucio/gateway/credential.py,sha256=Io3kV9yozQKsDxye-0ZExBrOFkEfpR_elE8Z17dKGOY,2645
|
|
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
|
|
338
|
+
rucio/gateway/heartbeat.py,sha256=GIJoJRpJ0nubkjZkYv4bQ175vWslbmubYy0ykGEZk2Y,3019
|
|
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
|
|
347
342
|
rucio/gateway/lock.py,sha256=l99ZjjWTfYFLi0LLsz2Lx_Wait-6GhCoorV1nsAoACA,4991
|
|
348
|
-
rucio/gateway/meta_conventions.py,sha256=
|
|
349
|
-
rucio/gateway/permission.py,sha256=
|
|
350
|
-
rucio/gateway/quarantined_replica.py,sha256=
|
|
351
|
-
rucio/gateway/replica.py,sha256=
|
|
352
|
-
rucio/gateway/request.py,sha256=
|
|
353
|
-
rucio/gateway/rse.py,sha256=
|
|
354
|
-
rucio/gateway/rule.py,sha256=
|
|
355
|
-
rucio/gateway/scope.py,sha256=
|
|
356
|
-
rucio/gateway/subscription.py,sha256=
|
|
357
|
-
rucio/gateway/vo.py,sha256=
|
|
358
|
-
rucio/rse/__init__.py,sha256=
|
|
359
|
-
rucio/rse/rsemanager.py,sha256=
|
|
343
|
+
rucio/gateway/meta_conventions.py,sha256=rfc0tpje8ejrLPBnNnX-cycUPnBwFma_zUV6v7vn7vg,3785
|
|
344
|
+
rucio/gateway/permission.py,sha256=kccPOcwB2eYlj1fNah-wFlfWihCq2GqS1I8jiCK1OIc,2855
|
|
345
|
+
rucio/gateway/quarantined_replica.py,sha256=Qb08bVqG7fz9LZKrqIZuGLgUsYy2Gu2FjXEXMvSqtv8,2731
|
|
346
|
+
rucio/gateway/replica.py,sha256=GiXDI4HIg4kAs3L8obAhL21rTt5-FRJ9kjUbT9N0_e8,23129
|
|
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
|
|
351
|
+
rucio/gateway/subscription.py,sha256=1jueM5p4gIYeTCCbXrrCDz_FKgKAOuCSR9BNZt_N6Sg,10838
|
|
352
|
+
rucio/gateway/vo.py,sha256=puqIGvpSz5OS0sz6lbT6g_kASiPIQGS6cl_cHnqJniU,5073
|
|
353
|
+
rucio/rse/__init__.py,sha256=imxCKNQN59aPqPhMd2yKg7mHBMFL00OkQT1Gqb8tF54,3290
|
|
354
|
+
rucio/rse/rsemanager.py,sha256=4vYikWrwCw6c3z6N2V2DaAioJPVtp_BBL5b8YLuFWDY,41037
|
|
355
|
+
rucio/rse/translation.py,sha256=qfqc4jEB1Rq6yj3xjTz3ivxT5Hg2716M8ldO1BleSDg,9013
|
|
360
356
|
rucio/rse/protocols/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
361
|
-
rucio/rse/protocols/bittorrent.py,sha256=
|
|
362
|
-
rucio/rse/protocols/cache.py,sha256=
|
|
363
|
-
rucio/rse/protocols/dummy.py,sha256
|
|
364
|
-
rucio/rse/protocols/gfal.py,sha256=
|
|
365
|
-
rucio/rse/protocols/globus.py,sha256=
|
|
366
|
-
rucio/rse/protocols/
|
|
367
|
-
rucio/rse/protocols/http_cache.py,sha256=WYIl6tsuZJ--EvJNdVbaP8rbaqc1TQQAu0IrglBCkOQ,2975
|
|
357
|
+
rucio/rse/protocols/bittorrent.py,sha256=ZBm_n7vU_NGXQaaZJWKQ-KUp6nYOMdbLqTvGuKN_LKk,7475
|
|
358
|
+
rucio/rse/protocols/cache.py,sha256=vJxwPa32TWMQSmETKJ_9ZcXmB4GS47yQGkB-d7IJAdc,4306
|
|
359
|
+
rucio/rse/protocols/dummy.py,sha256=-4drSHxyR3hTyHgqVum4ZJl2yg_ZUCSkgS_FzFUQMYg,3928
|
|
360
|
+
rucio/rse/protocols/gfal.py,sha256=rpWtR5uUV3tllkEArKDVo5xVR6TlKJvUBcdR3A0ehA0,29341
|
|
361
|
+
rucio/rse/protocols/globus.py,sha256=CsnYYEeBUslJMH7rX-DN7G3280OMrEwo_AvJ20SH6qQ,9743
|
|
362
|
+
rucio/rse/protocols/http_cache.py,sha256=UVovml9RFfLUNyCJRYkYjhDev00Dd-eahJpfmvX1VDY,3014
|
|
368
363
|
rucio/rse/protocols/mock.py,sha256=yZDK_xgC7aV9sXrbVsWOliQPS8i0SpsSFigDGy32NOk,4495
|
|
369
364
|
rucio/rse/protocols/ngarc.py,sha256=zrYMtuqRKMcK_ukXu11NZSoTYfgmiwJqyctMU1YVCl8,7224
|
|
370
|
-
rucio/rse/protocols/posix.py,sha256=
|
|
371
|
-
rucio/rse/protocols/protocol.py,sha256=
|
|
372
|
-
rucio/rse/protocols/rclone.py,sha256=
|
|
373
|
-
rucio/rse/protocols/rfio.py,sha256=
|
|
365
|
+
rucio/rse/protocols/posix.py,sha256=jmKcFsrvFbbimKNw9WkK2R4d_XkXx_1zM-KOYa5--Ow,10435
|
|
366
|
+
rucio/rse/protocols/protocol.py,sha256=RffRogww34G62TzwFdQCfe19xrsf_G36SwlaR4U7YdE,15286
|
|
367
|
+
rucio/rse/protocols/rclone.py,sha256=beZewvum5BN1P7VvCISAdZMuPb-n-MbwBJqeSTHplVM,15293
|
|
368
|
+
rucio/rse/protocols/rfio.py,sha256=8TJ_60pWH7ragdNG9INz_oOK1LXLc-C43iENGAKfOEg,5768
|
|
374
369
|
rucio/rse/protocols/srm.py,sha256=GLij-YCb4uyTijXtFvjktdrOvzMaMVd93ujdbSf5pQ8,14689
|
|
375
|
-
rucio/rse/protocols/ssh.py,sha256=
|
|
376
|
-
rucio/rse/protocols/storm.py,sha256=
|
|
377
|
-
rucio/rse/protocols/webdav.py,sha256=
|
|
378
|
-
rucio/rse/protocols/xrootd.py,sha256=
|
|
370
|
+
rucio/rse/protocols/ssh.py,sha256=pHPAQx2bPNkMrtqbCqDfq7OXoy7XphQ-i2Stzdvnf1k,17506
|
|
371
|
+
rucio/rse/protocols/storm.py,sha256=Z4fzklxG-x70A0Lugg1jE1RicwCSeF27iz0MXO-4to0,7864
|
|
372
|
+
rucio/rse/protocols/webdav.py,sha256=nNMWEVqO1nYxJWrCVBoWLhG-XG2-ee5CL5H_MNRwkg0,24513
|
|
373
|
+
rucio/rse/protocols/xrootd.py,sha256=oJHueVR44dcW5nkg8jCbr9PetV9UIti3C0tka_m7yIk,12604
|
|
379
374
|
rucio/tests/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
380
|
-
rucio/tests/common.py,sha256=
|
|
381
|
-
rucio/tests/common_server.py,sha256=
|
|
375
|
+
rucio/tests/common.py,sha256=4fd7QwpmXTWLr5IaFzhi6-AyRbSlx9SUapdTeOErfSs,9666
|
|
376
|
+
rucio/tests/common_server.py,sha256=hRuD7IZZjlNtahvkIssRvNPK68dS7Cs00aUuO4BQsWs,5667
|
|
382
377
|
rucio/transfertool/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
383
|
-
rucio/transfertool/bittorrent.py,sha256=
|
|
384
|
-
rucio/transfertool/bittorrent_driver.py,sha256=
|
|
385
|
-
rucio/transfertool/bittorrent_driver_qbittorrent.py,sha256=
|
|
386
|
-
rucio/transfertool/fts3.py,sha256
|
|
378
|
+
rucio/transfertool/bittorrent.py,sha256=2gPRmopyav8IXAtHcsC5oUcjZtmNQ8prUMKzFcCPUaE,8378
|
|
379
|
+
rucio/transfertool/bittorrent_driver.py,sha256=3Txv9hzjl2ICop_MjVswLteUzPDECS7sqikvNFzMoRs,1694
|
|
380
|
+
rucio/transfertool/bittorrent_driver_qbittorrent.py,sha256=8L4_K8ZdKS-kML8nLuZSzGZ6PMNtYdxjjO1QJD5C0o8,4987
|
|
381
|
+
rucio/transfertool/fts3.py,sha256=rP3o1Gpumf627woGXM4KnE-pBeWDfOrx3NCG7e0Kj_8,78412
|
|
387
382
|
rucio/transfertool/fts3_plugins.py,sha256=ZoSCjpr-Htfv58iSZYlyMSM1kbpaGi5j-asaX78lgHc,5891
|
|
388
383
|
rucio/transfertool/globus.py,sha256=JgkkbgBQdmsloGsaAeGm5B_yUQDNabDiZb1hie6teT8,7716
|
|
389
384
|
rucio/transfertool/globus_library.py,sha256=SA2ryvmxieXjQ8L_UcUFILJ26pySzmNMCkokxbWDcI0,8411
|
|
390
|
-
rucio/transfertool/mock.py,sha256=
|
|
385
|
+
rucio/transfertool/mock.py,sha256=FPa399oZSOzL2yQUhR6JevQT-yhUggSBL5a5lFJ_yVc,3388
|
|
391
386
|
rucio/transfertool/transfertool.py,sha256=NiVT9HcXkYVRyh7E496qB6w6gZkSJUp0V02Ig1bGwgw,8506
|
|
392
387
|
rucio/web/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
393
388
|
rucio/web/rest/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
@@ -398,17 +393,17 @@ rucio/web/rest/flaskapi/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0Y
|
|
|
398
393
|
rucio/web/rest/flaskapi/authenticated_bp.py,sha256=Q5yRLRAfu091GVaeiXKhKd5FNdA8DlClXWDv8562TW8,999
|
|
399
394
|
rucio/web/rest/flaskapi/v1/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
400
395
|
rucio/web/rest/flaskapi/v1/accountlimits.py,sha256=LuqFEjEJ-o_9N9xEkysymnhjG0Z6mSWNKvZ0-AsGg_U,8080
|
|
401
|
-
rucio/web/rest/flaskapi/v1/accounts.py,sha256=
|
|
396
|
+
rucio/web/rest/flaskapi/v1/accounts.py,sha256=abhdLr0sG8kRAEj1yQSjQCVyUL4yiaZWbG83iwfQCCs,38548
|
|
402
397
|
rucio/web/rest/flaskapi/v1/archives.py,sha256=Q9j32sRKAtdxeax5HOEjAyWdX9C5oeNWmdNnIfgFcuE,3534
|
|
403
|
-
rucio/web/rest/flaskapi/v1/auth.py,sha256=
|
|
398
|
+
rucio/web/rest/flaskapi/v1/auth.py,sha256=16VrUIxNN2rYtL8ylRGsiaSWTl7kPg2OV_3RsA53jmY,62431
|
|
404
399
|
rucio/web/rest/flaskapi/v1/common.py,sha256=pfP51XHzgI1lU9ToxQw9rU1ZGkcLAlTxMEdjq99S6_c,16962
|
|
405
400
|
rucio/web/rest/flaskapi/v1/config.py,sha256=D2FY0lz4u0f7tfnqEvJ3kq7Z9Vp46KlAJ68nPeolYMw,10147
|
|
406
|
-
rucio/web/rest/flaskapi/v1/credentials.py,sha256=
|
|
407
|
-
rucio/web/rest/flaskapi/v1/dids.py,sha256=
|
|
401
|
+
rucio/web/rest/flaskapi/v1/credentials.py,sha256=YAx7IzwhRYkM7TK4ZZGfbelQA5MUi8P-OP25Bwl8GZU,7836
|
|
402
|
+
rucio/web/rest/flaskapi/v1/dids.py,sha256=Ofmcf4gSXUj0OwpKcOyMxYLIWeLyXTAlBb73yYJQcPU,81484
|
|
408
403
|
rucio/web/rest/flaskapi/v1/dirac.py,sha256=jTFotoHqnDCs__XT0gns5YKhrqaazV1qf-8W4RZfYN4,4710
|
|
409
404
|
rucio/web/rest/flaskapi/v1/export.py,sha256=Kjh8qIODIzgjz-6jiC2aOTRrC2oHR4dTJ0MOabjIiB4,2660
|
|
410
405
|
rucio/web/rest/flaskapi/v1/heartbeats.py,sha256=T3G204l6ASvUYk5ZDK8sUCVwzjYAeLcVgQYbckELIsY,4624
|
|
411
|
-
rucio/web/rest/flaskapi/v1/identities.py,sha256=
|
|
406
|
+
rucio/web/rest/flaskapi/v1/identities.py,sha256=LeBFsOmCKEyfDb6t_2p9Rrn0UG6V9q-z3t-H32mAcvE,8814
|
|
412
407
|
rucio/web/rest/flaskapi/v1/import.py,sha256=wqsges6E-n2B5uZJxjqmOyrhfSQhEPD9GmBF9PLQetE,5263
|
|
413
408
|
rucio/web/rest/flaskapi/v1/lifetime_exceptions.py,sha256=ms-5ze74UErRIO5Z2_xd1H_KF7wYGtIDNVVeft7OqCk,12013
|
|
414
409
|
rucio/web/rest/flaskapi/v1/locks.py,sha256=0rXKZV0Kabhf1Q35HDnhqzHfzHI0JTXavqKLYATGAW8,12994
|
|
@@ -417,77 +412,76 @@ rucio/web/rest/flaskapi/v1/meta_conventions.py,sha256=8rG0MV8Uk8_k5JuoXdWVMwmaVZ
|
|
|
417
412
|
rucio/web/rest/flaskapi/v1/metrics.py,sha256=-tCHboUu_5hI87G_pZswhpY6koTwu6WudgW4RixOnIg,1250
|
|
418
413
|
rucio/web/rest/flaskapi/v1/nongrid_traces.py,sha256=qJdu9ZjGg1aLHxQUSjMi5TJV_dN1g4BCtTA4Wet1gcY,3130
|
|
419
414
|
rucio/web/rest/flaskapi/v1/ping.py,sha256=m3ahSzver84xECWnteEWIVuH8WSNZAs_QRZ8gY_UVZA,3095
|
|
420
|
-
rucio/web/rest/flaskapi/v1/redirect.py,sha256=
|
|
421
|
-
rucio/web/rest/flaskapi/v1/replicas.py,sha256=
|
|
415
|
+
rucio/web/rest/flaskapi/v1/redirect.py,sha256=5LBpKZ6jU87FU2lgLv9qrnhWA0XmIVMO4BmNweEErf4,13571
|
|
416
|
+
rucio/web/rest/flaskapi/v1/replicas.py,sha256=yNu7uuVUArv5o3Daf_L2JxVn81HeWGQzzJ6w_ccSrfs,72773
|
|
422
417
|
rucio/web/rest/flaskapi/v1/requests.py,sha256=GK1PdEmA2ceztrI_RPv0XXa5Xh5URSS44EDHNojKADY,41942
|
|
423
|
-
rucio/web/rest/flaskapi/v1/rses.py,sha256=
|
|
418
|
+
rucio/web/rest/flaskapi/v1/rses.py,sha256=SAu1OuAupHusw-MRAavURZZv8X6geTg4NbQmWinpgBI,82234
|
|
424
419
|
rucio/web/rest/flaskapi/v1/rules.py,sha256=GtS_bi5RLsWrKWwMupyFywRiRXxTJTGp6gWa8O0KRmY,32197
|
|
425
420
|
rucio/web/rest/flaskapi/v1/scopes.py,sha256=og11d0hDr76TxPK67RLxK125a3qW8rdqrrL_1QBeH3Q,5072
|
|
426
421
|
rucio/web/rest/flaskapi/v1/subscriptions.py,sha256=uAJz5NOZpWAqlPoaaShZqtm-xXkvizvzVZN1mp4lqv8,24678
|
|
427
|
-
rucio/web/rest/flaskapi/v1/traces.py,sha256=
|
|
422
|
+
rucio/web/rest/flaskapi/v1/traces.py,sha256=vn8B9xqkPP60ep5QcfWhKoDu2IAFC3kOaeHaO3bYFrk,4602
|
|
428
423
|
rucio/web/rest/flaskapi/v1/types.py,sha256=kY-nml_En9zwkKu9TEYwEZGaF2NJ09gN2IUY7h9rp68,799
|
|
429
424
|
rucio/web/rest/flaskapi/v1/vos.py,sha256=mJy5hYmXW7SvhoJ9VBHSjVFx0FDANTIMCXCS28zk7P0,9158
|
|
430
425
|
rucio/web/rest/flaskapi/v1/templates/auth_crash.html,sha256=enhyVliQHlblgCEHvBzAlLxymFySlc42tk87vfWdBo0,2254
|
|
431
426
|
rucio/web/rest/flaskapi/v1/templates/auth_granted.html,sha256=SDsrTCQhwklLu3mDtSTUATnK16QG1T-eWDTDjmv8bn4,2139
|
|
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-
|
|
489
|
-
rucio-
|
|
490
|
-
rucio-
|
|
491
|
-
rucio-
|
|
492
|
-
rucio-
|
|
493
|
-
rucio-35.7.0.dist-info/RECORD,,
|
|
427
|
+
rucio-37.0.0.data/data/rucio/requirements.server.txt,sha256=OLvhbLbJ_9J93IJg1_9D2jyRFteFXwd0j2qOLp7PMm0,5961
|
|
428
|
+
rucio-37.0.0.data/data/rucio/etc/alembic.ini.template,sha256=3eFdZvlBhtyYQcRCWGoehy4xfHe0xXqUCnxC91Neg9k,1772
|
|
429
|
+
rucio-37.0.0.data/data/rucio/etc/alembic_offline.ini.template,sha256=Zg39kR-_rmxU7X9BP5x68ccSx1UNMEOzOy2JC0D4O8c,1930
|
|
430
|
+
rucio-37.0.0.data/data/rucio/etc/globus-config.yml.template,sha256=ADOplXW10bO5KZVYRavwKgNaDR0VmdJ3gVbINeqoSIA,96
|
|
431
|
+
rucio-37.0.0.data/data/rucio/etc/ldap.cfg.template,sha256=2n-Exv81toCDZ6OzuNfMa71OoiLTdCSjWhkzCfSN3eM,806
|
|
432
|
+
rucio-37.0.0.data/data/rucio/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
|
|
433
|
+
rucio-37.0.0.data/data/rucio/etc/rucio.cfg.atlas.client.template,sha256=aHP1oX9m5yA8xVTTT2Hz6AyOYu92-Bcd5LF0i3AZRQw,1350
|
|
434
|
+
rucio-37.0.0.data/data/rucio/etc/rucio.cfg.template,sha256=iqtbivJDlngApmuJDiOLDQPRlxDRfljpLmiT_tzlUrM,8081
|
|
435
|
+
rucio-37.0.0.data/data/rucio/etc/rucio_multi_vo.cfg.template,sha256=NbvzcC9EZm0HpmjIC60KMPwOHHn9ScM5Twb4c6MoOHc,6992
|
|
436
|
+
rucio-37.0.0.data/data/rucio/etc/mail_templates/rule_approval_request.tmpl,sha256=MTrB-IQEFE6TJnkwXjLxlUIc4afHmmrdQDC1S5og_dM,1210
|
|
437
|
+
rucio-37.0.0.data/data/rucio/etc/mail_templates/rule_approved_admin.tmpl,sha256=HxYNm7EKG9cMNkwUNPgZUC7o0Q9-DTINh1JtGtHOYUg,105
|
|
438
|
+
rucio-37.0.0.data/data/rucio/etc/mail_templates/rule_approved_user.tmpl,sha256=R4rssZ2hE8wcYPmAyc-UDpO5SPhMLZGNuYz6pvLjPVc,499
|
|
439
|
+
rucio-37.0.0.data/data/rucio/etc/mail_templates/rule_denied_admin.tmpl,sha256=feXJ3pZynlESBuPoe_y8amB84UQnLaP6SHtRk3cn7ZA,120
|
|
440
|
+
rucio-37.0.0.data/data/rucio/etc/mail_templates/rule_denied_user.tmpl,sha256=O054th_sVqZTFUeC3Gg_Qe8CrXQb-bxJhMaO48VMzzU,493
|
|
441
|
+
rucio-37.0.0.data/data/rucio/etc/mail_templates/rule_ok_notification.tmpl,sha256=EiT0KucfIKYnIN5XO9XawzZAJSVRYlza5sn8VloyBy4,546
|
|
442
|
+
rucio-37.0.0.data/data/rucio/tools/bootstrap.py,sha256=iI0Ue2mrRJdjFITm93DLHUBxDb_yfEoMUDpgO5Bqkhw,1259
|
|
443
|
+
rucio-37.0.0.data/data/rucio/tools/merge_rucio_configs.py,sha256=u62K1EcCGydM5nZA30zhlqWo4EX5N87b_MDkx5YfzVI,6163
|
|
444
|
+
rucio-37.0.0.data/data/rucio/tools/reset_database.py,sha256=ctvzWtRCQT69GNvmjDxtuSq8XM0B7VTdC0y-ALnHQsI,1351
|
|
445
|
+
rucio-37.0.0.data/scripts/rucio,sha256=xQRL_0mwut48KxOgWZexsSx9jfnaZHqSTAo7OnCHAgA,5081
|
|
446
|
+
rucio-37.0.0.data/scripts/rucio-abacus-account,sha256=C4ThueuI3gM3IVY9h1-T6xzkxFKMLmg2XTgSY7u7HXk,2806
|
|
447
|
+
rucio-37.0.0.data/scripts/rucio-abacus-collection-replica,sha256=HD2acGu8xBDAsKGCA7oLQvcY5SdT1mIQhSrREDV2n_M,1809
|
|
448
|
+
rucio-37.0.0.data/scripts/rucio-abacus-rse,sha256=3ws35qgLNh6FePNJMbPB2GDMvXw6rHGuxh5t8qVByNs,2553
|
|
449
|
+
rucio-37.0.0.data/scripts/rucio-admin,sha256=AhPO6-fAPviHObhB_Yi7GJXKfjpaH6m0RqxwctBeFlE,4229
|
|
450
|
+
rucio-37.0.0.data/scripts/rucio-atropos,sha256=o6KsmbjxbFgtKWl7gZbmBxBc3gYWax6FkkyfhUDmKbY,3171
|
|
451
|
+
rucio-37.0.0.data/scripts/rucio-auditor,sha256=SXjgj5V9utNNhFYDO7pa7hejpJORZVPPQkhxguUWNyk,6114
|
|
452
|
+
rucio-37.0.0.data/scripts/rucio-automatix,sha256=Lgud3OXVqUcBrPMtTAgSgPE5ZWSr74FBfBh0EoA9-E8,1996
|
|
453
|
+
rucio-37.0.0.data/scripts/rucio-bb8,sha256=TD8P3cMiDB_knZKZcGTQsy8aA7nPQXMC1TNPCyXrsSg,3089
|
|
454
|
+
rucio-37.0.0.data/scripts/rucio-cache-client,sha256=71-xm4MyxEDBlwnlviHsOgF0tx5EbADsPoVpj_DJDkA,5276
|
|
455
|
+
rucio-37.0.0.data/scripts/rucio-cache-consumer,sha256=5mCXRQWwAww3aabTMQh-U9HgHFkCJf3VpTHdk9R-rsU,1348
|
|
456
|
+
rucio-37.0.0.data/scripts/rucio-conveyor-finisher,sha256=mAexgdlj41UOwIQDZ5POU8gTRMuKzaOqhEww6cRV2rI,2333
|
|
457
|
+
rucio-37.0.0.data/scripts/rucio-conveyor-poller,sha256=z2C17x3n_eKdDrL1w1ePJpslkbOw2UMTh5BaOw-__Es,2825
|
|
458
|
+
rucio-37.0.0.data/scripts/rucio-conveyor-preparer,sha256=jlaBQbN8f081ekInQxn3QcNvrQQqedmdjQ6PeEp9JeU,1746
|
|
459
|
+
rucio-37.0.0.data/scripts/rucio-conveyor-receiver,sha256=Tgg6oXQp1G31ZK_7OKh6fLvcO3GdGi55b7xho2I9B74,1669
|
|
460
|
+
rucio-37.0.0.data/scripts/rucio-conveyor-stager,sha256=AaFzBHTahrv5--H16lbpUlXc64hijLL_myakuJ0V-oI,3371
|
|
461
|
+
rucio-37.0.0.data/scripts/rucio-conveyor-submitter,sha256=IMENh4rK8w6KbjZaOD8UJEv5BHdiFDjhfsHmZZK-T80,6738
|
|
462
|
+
rucio-37.0.0.data/scripts/rucio-conveyor-throttler,sha256=HS0vqTtMlrwUlsVM8a6aSHu0Kh4qkj52A3rqYuBy7bg,3845
|
|
463
|
+
rucio-37.0.0.data/scripts/rucio-dark-reaper,sha256=GmQAUNmmJKJjeuY7jbQIHvrbdQWRJSlqojMF_6h8j2Y,2532
|
|
464
|
+
rucio-37.0.0.data/scripts/rucio-dumper,sha256=zGfdsamPIUxbnDFDPM6FtqR1d3FH1AdC0gtH1JeLaxU,6729
|
|
465
|
+
rucio-37.0.0.data/scripts/rucio-follower,sha256=sXVEogQcoH0IxLy5qO-cjly-aVPCJ7uVcVsZtfyd2Pk,1400
|
|
466
|
+
rucio-37.0.0.data/scripts/rucio-hermes,sha256=i238hHzuv9JNUUPHNcOjnFQSs6BpPmz88t8ZFgS2GxI,1973
|
|
467
|
+
rucio-37.0.0.data/scripts/rucio-judge-cleaner,sha256=AKF8Jz67xRjiInuex003AXxTnOwTN2DQN38RS9jkrLY,4635
|
|
468
|
+
rucio-37.0.0.data/scripts/rucio-judge-evaluator,sha256=JrWN2ZatnUig5iWM7Ku4nEspXBjaucOrc8Ic55_OCzc,7458
|
|
469
|
+
rucio-37.0.0.data/scripts/rucio-judge-injector,sha256=d6na_n4H7njpUmJQg2Gc4KlbgK0_xuW5vw3waLReLTQ,1657
|
|
470
|
+
rucio-37.0.0.data/scripts/rucio-judge-repairer,sha256=QHeBySAn1bYS17z5dTfq8o81uEUpqhGVUqe6KWZBVmQ,1661
|
|
471
|
+
rucio-37.0.0.data/scripts/rucio-kronos,sha256=WQQ0izYfdVvmfaaRkqSf4mejL-U86OL5mD5v1t2p6Eg,1770
|
|
472
|
+
rucio-37.0.0.data/scripts/rucio-minos,sha256=-utVl82-xd7zxp4yy1udqCm_MehRP7pU5WDdJ7EFuac,2246
|
|
473
|
+
rucio-37.0.0.data/scripts/rucio-minos-temporary-expiration,sha256=E9G_h__cJNWuEcFDoeBFjzCHqp1swW-ff67M2WpZ3eg,1983
|
|
474
|
+
rucio-37.0.0.data/scripts/rucio-necromancer,sha256=axQkxvue4PyLv5zQLyEtarTA1JgQIDJYDdLqEc7I4Ww,5612
|
|
475
|
+
rucio-37.0.0.data/scripts/rucio-oauth-manager,sha256=qqFyI_L-bHg4R6a3OSgL_RsmosuODykX7HM-u0Mr-nY,2776
|
|
476
|
+
rucio-37.0.0.data/scripts/rucio-reaper,sha256=c0aMDs0N0ubKcl5T5aHunqaBcmIIj6WmERReKTS9di4,3773
|
|
477
|
+
rucio-37.0.0.data/scripts/rucio-replica-recoverer,sha256=GOf1qc0QD5sbWXPwBP2uWyjSi3VPMXCnOXa85h45PV4,19002
|
|
478
|
+
rucio-37.0.0.data/scripts/rucio-rse-decommissioner,sha256=zXXTq1lPzoI5R012fGWrxXi9VcHZNIfB85EefwQN1kw,2337
|
|
479
|
+
rucio-37.0.0.data/scripts/rucio-storage-consistency-actions,sha256=Mb4GUO1kP7HdiCORhHkYfmfZIhJKp88RBr8TEC19HXo,3906
|
|
480
|
+
rucio-37.0.0.data/scripts/rucio-transmogrifier,sha256=i17F1FTrxharmCWVZpylXSH2Xow2KaxkTr2jzDFn8Rc,3350
|
|
481
|
+
rucio-37.0.0.data/scripts/rucio-undertaker,sha256=HQ-irdSrsftrsS8NdVjGhxYlFE4hDVo9bh32jTwNCCc,2706
|
|
482
|
+
rucio-37.0.0.dist-info/licenses/AUTHORS.rst,sha256=c4MEJjLcFZ5euNtPA7jGFL26javbFKpWTvxBoIs_l6w,4726
|
|
483
|
+
rucio-37.0.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
484
|
+
rucio-37.0.0.dist-info/METADATA,sha256=_pV5I5tvIvAkRhGNhYI928MZTN1enTAfdFA4XIHcqr8,2963
|
|
485
|
+
rucio-37.0.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
486
|
+
rucio-37.0.0.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
|
|
487
|
+
rucio-37.0.0.dist-info/RECORD,,
|