rucio 32.8.6__py3-none-any.whl → 35.8.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/__init__.py +0 -1
- rucio/alembicrevision.py +1 -2
- rucio/client/__init__.py +0 -1
- rucio/client/accountclient.py +45 -25
- rucio/client/accountlimitclient.py +37 -9
- rucio/client/baseclient.py +199 -154
- rucio/client/client.py +2 -3
- rucio/client/configclient.py +19 -6
- rucio/client/credentialclient.py +9 -4
- rucio/client/didclient.py +238 -63
- rucio/client/diracclient.py +13 -5
- rucio/client/downloadclient.py +162 -51
- rucio/client/exportclient.py +4 -4
- rucio/client/fileclient.py +3 -4
- rucio/client/importclient.py +4 -4
- rucio/client/lifetimeclient.py +21 -5
- rucio/client/lockclient.py +18 -8
- rucio/client/{metaclient.py → metaconventionsclient.py} +18 -15
- rucio/client/pingclient.py +0 -1
- rucio/client/replicaclient.py +15 -5
- rucio/client/requestclient.py +35 -19
- rucio/client/rseclient.py +133 -51
- rucio/client/ruleclient.py +29 -22
- rucio/client/scopeclient.py +8 -6
- rucio/client/subscriptionclient.py +47 -35
- rucio/client/touchclient.py +8 -4
- rucio/client/uploadclient.py +166 -82
- rucio/common/__init__.py +0 -1
- rucio/common/cache.py +4 -4
- rucio/common/config.py +52 -47
- rucio/common/constants.py +69 -2
- rucio/common/constraints.py +0 -1
- rucio/common/didtype.py +24 -22
- rucio/common/dumper/__init__.py +70 -41
- rucio/common/dumper/consistency.py +26 -22
- rucio/common/dumper/data_models.py +16 -23
- rucio/common/dumper/path_parsing.py +0 -1
- rucio/common/exception.py +281 -222
- rucio/common/extra.py +0 -1
- rucio/common/logging.py +54 -38
- rucio/common/pcache.py +122 -101
- rucio/common/plugins.py +153 -0
- rucio/common/policy.py +4 -4
- rucio/common/schema/__init__.py +17 -10
- rucio/common/schema/atlas.py +7 -5
- rucio/common/schema/belleii.py +7 -5
- rucio/common/schema/domatpc.py +7 -5
- rucio/common/schema/escape.py +7 -5
- rucio/common/schema/generic.py +8 -6
- rucio/common/schema/generic_multi_vo.py +7 -5
- rucio/common/schema/icecube.py +7 -5
- rucio/common/stomp_utils.py +0 -1
- rucio/common/stopwatch.py +0 -1
- rucio/common/test_rucio_server.py +2 -2
- rucio/common/types.py +262 -17
- rucio/common/utils.py +743 -451
- rucio/core/__init__.py +0 -1
- rucio/core/account.py +99 -29
- rucio/core/account_counter.py +89 -24
- rucio/core/account_limit.py +90 -24
- rucio/core/authentication.py +86 -29
- rucio/core/config.py +108 -38
- rucio/core/credential.py +14 -7
- rucio/core/did.py +680 -782
- rucio/core/did_meta_plugins/__init__.py +8 -6
- rucio/core/did_meta_plugins/did_column_meta.py +17 -12
- rucio/core/did_meta_plugins/did_meta_plugin_interface.py +60 -11
- rucio/core/did_meta_plugins/filter_engine.py +90 -50
- rucio/core/did_meta_plugins/json_meta.py +41 -16
- rucio/core/did_meta_plugins/mongo_meta.py +25 -8
- rucio/core/did_meta_plugins/postgres_meta.py +3 -4
- rucio/core/dirac.py +46 -17
- rucio/core/distance.py +66 -43
- rucio/core/exporter.py +5 -5
- rucio/core/heartbeat.py +181 -81
- rucio/core/identity.py +22 -12
- rucio/core/importer.py +23 -12
- rucio/core/lifetime_exception.py +32 -32
- rucio/core/lock.py +244 -142
- rucio/core/message.py +79 -38
- rucio/core/{meta.py → meta_conventions.py} +57 -44
- rucio/core/monitor.py +19 -13
- rucio/core/naming_convention.py +68 -27
- rucio/core/nongrid_trace.py +17 -5
- rucio/core/oidc.py +151 -29
- rucio/core/permission/__init__.py +18 -6
- rucio/core/permission/atlas.py +50 -35
- rucio/core/permission/belleii.py +6 -5
- rucio/core/permission/escape.py +8 -6
- rucio/core/permission/generic.py +82 -80
- rucio/core/permission/generic_multi_vo.py +9 -7
- rucio/core/quarantined_replica.py +91 -58
- rucio/core/replica.py +1303 -772
- rucio/core/replica_sorter.py +10 -12
- rucio/core/request.py +1133 -285
- rucio/core/rse.py +142 -102
- rucio/core/rse_counter.py +49 -18
- rucio/core/rse_expression_parser.py +6 -7
- rucio/core/rse_selector.py +41 -16
- rucio/core/rule.py +1538 -474
- rucio/core/rule_grouping.py +213 -68
- rucio/core/scope.py +50 -22
- rucio/core/subscription.py +92 -44
- rucio/core/topology.py +66 -24
- rucio/core/trace.py +42 -28
- rucio/core/transfer.py +543 -259
- rucio/core/vo.py +36 -18
- rucio/core/volatile_replica.py +59 -32
- rucio/daemons/__init__.py +0 -1
- rucio/daemons/abacus/__init__.py +0 -1
- rucio/daemons/abacus/account.py +29 -19
- rucio/daemons/abacus/collection_replica.py +21 -10
- rucio/daemons/abacus/rse.py +22 -12
- rucio/daemons/atropos/__init__.py +0 -1
- rucio/daemons/atropos/atropos.py +1 -2
- rucio/daemons/auditor/__init__.py +56 -28
- rucio/daemons/auditor/hdfs.py +17 -6
- rucio/daemons/auditor/srmdumps.py +116 -45
- rucio/daemons/automatix/__init__.py +0 -1
- rucio/daemons/automatix/automatix.py +30 -18
- rucio/daemons/badreplicas/__init__.py +0 -1
- rucio/daemons/badreplicas/minos.py +29 -18
- rucio/daemons/badreplicas/minos_temporary_expiration.py +5 -7
- rucio/daemons/badreplicas/necromancer.py +9 -13
- rucio/daemons/bb8/__init__.py +0 -1
- rucio/daemons/bb8/bb8.py +10 -13
- rucio/daemons/bb8/common.py +151 -154
- rucio/daemons/bb8/nuclei_background_rebalance.py +15 -9
- rucio/daemons/bb8/t2_background_rebalance.py +15 -8
- rucio/daemons/c3po/__init__.py +0 -1
- rucio/daemons/c3po/algorithms/__init__.py +0 -1
- rucio/daemons/c3po/algorithms/simple.py +8 -5
- rucio/daemons/c3po/algorithms/t2_free_space.py +10 -7
- rucio/daemons/c3po/algorithms/t2_free_space_only_pop.py +10 -7
- rucio/daemons/c3po/algorithms/t2_free_space_only_pop_with_network.py +30 -15
- rucio/daemons/c3po/c3po.py +81 -52
- rucio/daemons/c3po/collectors/__init__.py +0 -1
- rucio/daemons/c3po/collectors/agis.py +17 -17
- rucio/daemons/c3po/collectors/free_space.py +32 -13
- rucio/daemons/c3po/collectors/jedi_did.py +14 -5
- rucio/daemons/c3po/collectors/mock_did.py +11 -6
- rucio/daemons/c3po/collectors/network_metrics.py +12 -4
- rucio/daemons/c3po/collectors/workload.py +21 -19
- rucio/daemons/c3po/utils/__init__.py +0 -1
- rucio/daemons/c3po/utils/dataset_cache.py +15 -5
- rucio/daemons/c3po/utils/expiring_dataset_cache.py +16 -5
- rucio/daemons/c3po/utils/expiring_list.py +6 -7
- rucio/daemons/c3po/utils/popularity.py +5 -2
- rucio/daemons/c3po/utils/timeseries.py +25 -12
- rucio/daemons/cache/__init__.py +0 -1
- rucio/daemons/cache/consumer.py +21 -15
- rucio/daemons/common.py +42 -18
- rucio/daemons/conveyor/__init__.py +0 -1
- rucio/daemons/conveyor/common.py +69 -37
- rucio/daemons/conveyor/finisher.py +83 -46
- rucio/daemons/conveyor/poller.py +101 -69
- rucio/daemons/conveyor/preparer.py +35 -28
- rucio/daemons/conveyor/receiver.py +64 -21
- rucio/daemons/conveyor/stager.py +33 -28
- rucio/daemons/conveyor/submitter.py +71 -47
- rucio/daemons/conveyor/throttler.py +99 -35
- rucio/daemons/follower/__init__.py +0 -1
- rucio/daemons/follower/follower.py +12 -8
- rucio/daemons/hermes/__init__.py +0 -1
- rucio/daemons/hermes/hermes.py +57 -21
- rucio/daemons/judge/__init__.py +0 -1
- rucio/daemons/judge/cleaner.py +27 -17
- rucio/daemons/judge/evaluator.py +31 -18
- rucio/daemons/judge/injector.py +31 -23
- rucio/daemons/judge/repairer.py +28 -18
- rucio/daemons/oauthmanager/__init__.py +0 -1
- rucio/daemons/oauthmanager/oauthmanager.py +7 -8
- rucio/daemons/reaper/__init__.py +0 -1
- rucio/daemons/reaper/dark_reaper.py +15 -9
- rucio/daemons/reaper/reaper.py +109 -67
- rucio/daemons/replicarecoverer/__init__.py +0 -1
- rucio/daemons/replicarecoverer/suspicious_replica_recoverer.py +255 -116
- rucio/{api → daemons/rsedecommissioner}/__init__.py +0 -1
- rucio/daemons/rsedecommissioner/config.py +81 -0
- rucio/daemons/rsedecommissioner/profiles/__init__.py +24 -0
- rucio/daemons/rsedecommissioner/profiles/atlas.py +60 -0
- rucio/daemons/rsedecommissioner/profiles/generic.py +451 -0
- rucio/daemons/rsedecommissioner/profiles/types.py +92 -0
- rucio/daemons/rsedecommissioner/rse_decommissioner.py +280 -0
- rucio/daemons/storage/__init__.py +0 -1
- rucio/daemons/storage/consistency/__init__.py +0 -1
- rucio/daemons/storage/consistency/actions.py +152 -59
- rucio/daemons/tracer/__init__.py +0 -1
- rucio/daemons/tracer/kronos.py +47 -24
- rucio/daemons/transmogrifier/__init__.py +0 -1
- rucio/daemons/transmogrifier/transmogrifier.py +35 -26
- rucio/daemons/undertaker/__init__.py +0 -1
- rucio/daemons/undertaker/undertaker.py +10 -10
- rucio/db/__init__.py +0 -1
- rucio/db/sqla/__init__.py +16 -2
- rucio/db/sqla/constants.py +10 -1
- rucio/db/sqla/migrate_repo/__init__.py +0 -1
- rucio/db/sqla/migrate_repo/env.py +0 -1
- rucio/db/sqla/migrate_repo/versions/01eaf73ab656_add_new_rule_notification_state_progress.py +0 -1
- rucio/db/sqla/migrate_repo/versions/0437a40dbfd1_add_eol_at_in_rules.py +0 -3
- rucio/db/sqla/migrate_repo/versions/0f1adb7a599a_create_transfer_hops_table.py +1 -3
- rucio/db/sqla/migrate_repo/versions/102efcf145f4_added_stuck_at_column_to_rules.py +0 -3
- rucio/db/sqla/migrate_repo/versions/13d4f70c66a9_introduce_transfer_limits.py +1 -3
- rucio/db/sqla/migrate_repo/versions/140fef722e91_cleanup_distances_table.py +1 -3
- rucio/db/sqla/migrate_repo/versions/14ec5aeb64cf_add_request_external_host.py +0 -3
- rucio/db/sqla/migrate_repo/versions/156fb5b5a14_add_request_type_to_requests_idx.py +1 -4
- rucio/db/sqla/migrate_repo/versions/1677d4d803c8_split_rse_availability_into_multiple.py +0 -1
- rucio/db/sqla/migrate_repo/versions/16a0aca82e12_create_index_on_table_replicas_path.py +0 -2
- rucio/db/sqla/migrate_repo/versions/1803333ac20f_adding_provenance_and_phys_group.py +0 -1
- rucio/db/sqla/migrate_repo/versions/1a29d6a9504c_add_didtype_chck_to_requests.py +0 -1
- rucio/db/sqla/migrate_repo/versions/1a80adff031a_create_index_on_rules_hist_recent.py +0 -2
- rucio/db/sqla/migrate_repo/versions/1c45d9730ca6_increase_identity_length.py +0 -1
- rucio/db/sqla/migrate_repo/versions/1d1215494e95_add_quarantined_replicas_table.py +1 -3
- rucio/db/sqla/migrate_repo/versions/1d96f484df21_asynchronous_rules_and_rule_approval.py +0 -1
- rucio/db/sqla/migrate_repo/versions/1f46c5f240ac_add_bytes_column_to_bad_replicas.py +0 -3
- rucio/db/sqla/migrate_repo/versions/1fc15ab60d43_add_message_history_table.py +0 -1
- rucio/db/sqla/migrate_repo/versions/2190e703eb6e_move_rse_settings_to_rse_attributes.py +1 -2
- rucio/db/sqla/migrate_repo/versions/21d6b9dc9961_add_mismatch_scheme_state_to_requests.py +0 -1
- rucio/db/sqla/migrate_repo/versions/22cf51430c78_add_availability_column_to_table_rses.py +0 -3
- rucio/db/sqla/migrate_repo/versions/22d887e4ec0a_create_sources_table.py +1 -3
- rucio/db/sqla/migrate_repo/versions/25821a8a45a3_remove_unique_constraint_on_requests.py +1 -4
- rucio/db/sqla/migrate_repo/versions/25fc855625cf_added_unique_constraint_to_rules.py +0 -2
- rucio/db/sqla/migrate_repo/versions/269fee20dee9_add_repair_cnt_to_locks.py +0 -3
- rucio/db/sqla/migrate_repo/versions/271a46ea6244_add_ignore_availability_column_to_rules.py +0 -3
- rucio/db/sqla/migrate_repo/versions/277b5fbb41d3_switch_heartbeats_executable.py +1 -2
- rucio/db/sqla/migrate_repo/versions/27e3a68927fb_remove_replicas_tombstone_and_replicas_.py +0 -1
- rucio/db/sqla/migrate_repo/versions/2854cd9e168_added_rule_id_column.py +0 -1
- rucio/db/sqla/migrate_repo/versions/295289b5a800_processed_by_and__at_in_requests.py +0 -2
- rucio/db/sqla/migrate_repo/versions/2962ece31cf4_add_nbaccesses_column_in_the_did_table.py +0 -3
- rucio/db/sqla/migrate_repo/versions/2af3291ec4c_added_replicas_history_table.py +1 -3
- rucio/db/sqla/migrate_repo/versions/2b69addda658_add_columns_for_third_party_copy_read_.py +0 -2
- rucio/db/sqla/migrate_repo/versions/2b8e7bcb4783_add_config_table.py +1 -4
- rucio/db/sqla/migrate_repo/versions/2ba5229cb54c_add_submitted_at_to_requests_table.py +0 -3
- rucio/db/sqla/migrate_repo/versions/2cbee484dcf9_added_column_volume_to_rse_transfer_.py +1 -4
- rucio/db/sqla/migrate_repo/versions/2edee4a83846_add_source_to_requests_and_requests_.py +0 -1
- rucio/db/sqla/migrate_repo/versions/2eef46be23d4_change_tokens_pk.py +1 -3
- rucio/db/sqla/migrate_repo/versions/2f648fc909f3_index_in_rule_history_on_scope_name.py +0 -2
- rucio/db/sqla/migrate_repo/versions/3082b8cef557_add_naming_convention_table_and_closed_.py +1 -3
- rucio/db/sqla/migrate_repo/versions/30fa38b6434e_add_index_on_service_column_in_the_message_table.py +1 -3
- rucio/db/sqla/migrate_repo/versions/3152492b110b_added_staging_area_column.py +1 -2
- rucio/db/sqla/migrate_repo/versions/32c7d2783f7e_create_bad_replicas_table.py +1 -3
- rucio/db/sqla/migrate_repo/versions/3345511706b8_replicas_table_pk_definition_is_in_.py +1 -3
- rucio/db/sqla/migrate_repo/versions/35ef10d1e11b_change_index_on_table_requests.py +0 -2
- rucio/db/sqla/migrate_repo/versions/379a19b5332d_create_rse_limits_table.py +1 -3
- rucio/db/sqla/migrate_repo/versions/384b96aa0f60_created_rule_history_tables.py +2 -3
- rucio/db/sqla/migrate_repo/versions/3ac1660a1a72_extend_distance_table.py +0 -3
- rucio/db/sqla/migrate_repo/versions/3ad36e2268b0_create_collection_replicas_updates_table.py +1 -4
- rucio/db/sqla/migrate_repo/versions/3c9df354071b_extend_waiting_request_state.py +0 -1
- rucio/db/sqla/migrate_repo/versions/3d9813fab443_add_a_new_state_lost_in_badfilesstatus.py +0 -1
- rucio/db/sqla/migrate_repo/versions/40ad39ce3160_add_transferred_at_to_requests_table.py +0 -3
- rucio/db/sqla/migrate_repo/versions/4207be2fd914_add_notification_column_to_rules.py +0 -1
- rucio/db/sqla/migrate_repo/versions/42db2617c364_create_index_on_requests_external_id.py +0 -2
- rucio/db/sqla/migrate_repo/versions/436827b13f82_added_column_activity_to_table_requests.py +0 -3
- rucio/db/sqla/migrate_repo/versions/44278720f774_update_requests_typ_sta_upd_idx_index.py +0 -2
- rucio/db/sqla/migrate_repo/versions/45378a1e76a8_create_collection_replica_table.py +2 -4
- rucio/db/sqla/migrate_repo/versions/469d262be19_removing_created_at_index.py +0 -2
- rucio/db/sqla/migrate_repo/versions/4783c1f49cb4_create_distance_table.py +1 -3
- rucio/db/sqla/migrate_repo/versions/49a21b4d4357_create_index_on_table_tokens.py +1 -4
- rucio/db/sqla/migrate_repo/versions/4a2cbedda8b9_add_source_replica_expression_column_to_.py +0 -3
- rucio/db/sqla/migrate_repo/versions/4a7182d9578b_added_bytes_length_accessed_at_columns.py +0 -3
- rucio/db/sqla/migrate_repo/versions/4bab9edd01fc_create_index_on_requests_rule_id.py +0 -2
- rucio/db/sqla/migrate_repo/versions/4c3a4acfe006_new_attr_account_table.py +1 -3
- rucio/db/sqla/migrate_repo/versions/4cf0a2e127d4_adding_transient_metadata.py +0 -3
- rucio/db/sqla/migrate_repo/versions/4df2c5ddabc0_remove_temporary_dids.py +55 -0
- rucio/db/sqla/migrate_repo/versions/50280c53117c_add_qos_class_to_rse.py +0 -2
- rucio/db/sqla/migrate_repo/versions/52153819589c_add_rse_id_to_replicas_table.py +0 -2
- rucio/db/sqla/migrate_repo/versions/52fd9f4916fa_added_activity_to_rules.py +0 -3
- rucio/db/sqla/migrate_repo/versions/53b479c3cb0f_fix_did_meta_table_missing_updated_at_.py +0 -3
- rucio/db/sqla/migrate_repo/versions/5673b4b6e843_add_wfms_metadata_to_rule_tables.py +0 -3
- rucio/db/sqla/migrate_repo/versions/575767d9f89_added_source_history_table.py +1 -2
- rucio/db/sqla/migrate_repo/versions/58bff7008037_add_started_at_to_requests.py +0 -3
- rucio/db/sqla/migrate_repo/versions/58c8b78301ab_rename_callback_to_message.py +1 -3
- rucio/db/sqla/migrate_repo/versions/5f139f77382a_added_child_rule_id_column.py +1 -3
- rucio/db/sqla/migrate_repo/versions/688ef1840840_adding_did_meta_table.py +1 -2
- rucio/db/sqla/migrate_repo/versions/6e572a9bfbf3_add_new_split_container_column_to_rules.py +0 -3
- rucio/db/sqla/migrate_repo/versions/70587619328_add_comment_column_for_subscriptions.py +0 -3
- rucio/db/sqla/migrate_repo/versions/739064d31565_remove_history_table_pks.py +1 -2
- rucio/db/sqla/migrate_repo/versions/7541902bf173_add_didsfollowed_and_followevents_table.py +2 -4
- rucio/db/sqla/migrate_repo/versions/7ec22226cdbf_new_replica_state_for_temporary_.py +0 -1
- rucio/db/sqla/migrate_repo/versions/810a41685bc1_added_columns_rse_transfer_limits.py +1 -4
- rucio/db/sqla/migrate_repo/versions/83f991c63a93_correct_rse_expression_length.py +0 -2
- rucio/db/sqla/migrate_repo/versions/8523998e2e76_increase_size_of_extended_attributes_.py +0 -3
- rucio/db/sqla/migrate_repo/versions/8ea9122275b1_adding_missing_function_based_indices.py +1 -2
- rucio/db/sqla/migrate_repo/versions/90f47792bb76_add_clob_payload_to_messages.py +0 -3
- rucio/db/sqla/migrate_repo/versions/914b8f02df38_new_table_for_lifetime_model_exceptions.py +1 -3
- rucio/db/sqla/migrate_repo/versions/94a5961ddbf2_add_estimator_columns.py +0 -3
- rucio/db/sqla/migrate_repo/versions/9a1b149a2044_add_saml_identity_type.py +0 -1
- rucio/db/sqla/migrate_repo/versions/9a45bc4ea66d_add_vp_table.py +1 -2
- rucio/db/sqla/migrate_repo/versions/9eb936a81eb1_true_is_true.py +0 -2
- rucio/db/sqla/migrate_repo/versions/a08fa8de1545_transfer_stats_table.py +55 -0
- rucio/db/sqla/migrate_repo/versions/a118956323f8_added_vo_table_and_vo_col_to_rse.py +1 -3
- rucio/db/sqla/migrate_repo/versions/a193a275255c_add_status_column_in_messages.py +0 -2
- rucio/db/sqla/migrate_repo/versions/a5f6f6e928a7_1_7_0.py +1 -4
- rucio/db/sqla/migrate_repo/versions/a616581ee47_added_columns_to_table_requests.py +0 -1
- rucio/db/sqla/migrate_repo/versions/a6eb23955c28_state_idx_non_functional.py +0 -1
- rucio/db/sqla/migrate_repo/versions/a74275a1ad30_added_global_quota_table.py +1 -3
- rucio/db/sqla/migrate_repo/versions/a93e4e47bda_heartbeats.py +1 -4
- rucio/db/sqla/migrate_repo/versions/ae2a56fcc89_added_comment_column_to_rules.py +0 -1
- rucio/db/sqla/migrate_repo/versions/b0070f3695c8_add_deletedidmeta_table.py +57 -0
- rucio/db/sqla/migrate_repo/versions/b4293a99f344_added_column_identity_to_table_tokens.py +0 -3
- rucio/db/sqla/migrate_repo/versions/b5493606bbf5_fix_primary_key_for_subscription_history.py +41 -0
- rucio/db/sqla/migrate_repo/versions/b7d287de34fd_removal_of_replicastate_source.py +1 -2
- rucio/db/sqla/migrate_repo/versions/b818052fa670_add_index_to_quarantined_replicas.py +1 -3
- rucio/db/sqla/migrate_repo/versions/b8caac94d7f0_add_comments_column_for_subscriptions_.py +0 -3
- rucio/db/sqla/migrate_repo/versions/b96a1c7e1cc4_new_bad_pfns_table_and_bad_replicas_.py +1 -5
- rucio/db/sqla/migrate_repo/versions/bb695f45c04_extend_request_state.py +1 -3
- rucio/db/sqla/migrate_repo/versions/bc68e9946deb_add_staging_timestamps_to_request.py +0 -3
- rucio/db/sqla/migrate_repo/versions/bf3baa1c1474_correct_pk_and_idx_for_history_tables.py +1 -3
- rucio/db/sqla/migrate_repo/versions/c0937668555f_add_qos_policy_map_table.py +1 -2
- rucio/db/sqla/migrate_repo/versions/c129ccdb2d5_add_lumiblocknr_to_dids.py +0 -3
- rucio/db/sqla/migrate_repo/versions/ccdbcd48206e_add_did_type_column_index_on_did_meta_.py +1 -4
- rucio/db/sqla/migrate_repo/versions/cebad904c4dd_new_payload_column_for_heartbeats.py +1 -2
- rucio/db/sqla/migrate_repo/versions/d1189a09c6e0_oauth2_0_and_jwt_feature_support_adding_.py +1 -4
- rucio/db/sqla/migrate_repo/versions/d23453595260_extend_request_state_for_preparer.py +1 -3
- rucio/db/sqla/migrate_repo/versions/d6dceb1de2d_added_purge_column_to_rules.py +1 -4
- rucio/db/sqla/migrate_repo/versions/d6e2c3b2cf26_remove_third_party_copy_column_from_rse.py +0 -2
- rucio/db/sqla/migrate_repo/versions/d91002c5841_new_account_limits_table.py +1 -3
- rucio/db/sqla/migrate_repo/versions/e138c364ebd0_extending_columns_for_filter_and_.py +0 -3
- rucio/db/sqla/migrate_repo/versions/e59300c8b179_support_for_archive.py +1 -3
- rucio/db/sqla/migrate_repo/versions/f1b14a8c2ac1_postgres_use_check_constraints.py +0 -1
- rucio/db/sqla/migrate_repo/versions/f41ffe206f37_oracle_global_temporary_tables.py +1 -2
- rucio/db/sqla/migrate_repo/versions/f85a2962b021_adding_transfertool_column_to_requests_.py +1 -3
- rucio/db/sqla/migrate_repo/versions/fa7a7d78b602_increase_refresh_token_size.py +0 -2
- rucio/db/sqla/migrate_repo/versions/fb28a95fe288_add_replicas_rse_id_tombstone_idx.py +0 -1
- rucio/db/sqla/migrate_repo/versions/fe1a65b176c9_set_third_party_copy_read_and_write_.py +1 -2
- rucio/db/sqla/migrate_repo/versions/fe8ea2fa9788_added_third_party_copy_column_to_rse_.py +0 -3
- rucio/db/sqla/models.py +122 -216
- rucio/db/sqla/sautils.py +12 -5
- rucio/db/sqla/session.py +71 -43
- rucio/db/sqla/types.py +3 -4
- rucio/db/sqla/util.py +91 -69
- rucio/gateway/__init__.py +13 -0
- rucio/{api → gateway}/account.py +119 -46
- rucio/{api → gateway}/account_limit.py +12 -13
- rucio/{api → gateway}/authentication.py +106 -33
- rucio/{api → gateway}/config.py +12 -13
- rucio/{api → gateway}/credential.py +15 -4
- rucio/{api → gateway}/did.py +384 -140
- rucio/{api → gateway}/dirac.py +16 -6
- rucio/{api → gateway}/exporter.py +3 -4
- rucio/{api → gateway}/heartbeat.py +17 -5
- rucio/{api → gateway}/identity.py +63 -19
- rucio/{api → gateway}/importer.py +3 -4
- rucio/{api → gateway}/lifetime_exception.py +35 -10
- rucio/{api → gateway}/lock.py +34 -12
- rucio/{api/meta.py → gateway/meta_conventions.py} +18 -16
- rucio/{api → gateway}/permission.py +4 -5
- rucio/{api → gateway}/quarantined_replica.py +13 -4
- rucio/{api → gateway}/replica.py +12 -11
- rucio/{api → gateway}/request.py +129 -28
- rucio/{api → gateway}/rse.py +11 -12
- rucio/{api → gateway}/rule.py +117 -35
- rucio/{api → gateway}/scope.py +24 -14
- rucio/{api → gateway}/subscription.py +65 -43
- rucio/{api → gateway}/vo.py +17 -7
- rucio/rse/__init__.py +3 -4
- rucio/rse/protocols/__init__.py +0 -1
- rucio/rse/protocols/bittorrent.py +184 -0
- rucio/rse/protocols/cache.py +1 -2
- rucio/rse/protocols/dummy.py +1 -2
- rucio/rse/protocols/gfal.py +12 -10
- rucio/rse/protocols/globus.py +7 -7
- rucio/rse/protocols/gsiftp.py +2 -3
- rucio/rse/protocols/http_cache.py +1 -2
- rucio/rse/protocols/mock.py +1 -2
- rucio/rse/protocols/ngarc.py +1 -2
- rucio/rse/protocols/posix.py +12 -13
- rucio/rse/protocols/protocol.py +116 -52
- rucio/rse/protocols/rclone.py +6 -7
- rucio/rse/protocols/rfio.py +4 -5
- rucio/rse/protocols/srm.py +9 -10
- rucio/rse/protocols/ssh.py +8 -9
- rucio/rse/protocols/storm.py +2 -3
- rucio/rse/protocols/webdav.py +17 -14
- rucio/rse/protocols/xrootd.py +23 -17
- rucio/rse/rsemanager.py +19 -7
- rucio/tests/__init__.py +0 -1
- rucio/tests/common.py +43 -17
- rucio/tests/common_server.py +3 -3
- rucio/transfertool/__init__.py +0 -1
- rucio/transfertool/bittorrent.py +199 -0
- rucio/transfertool/bittorrent_driver.py +52 -0
- rucio/transfertool/bittorrent_driver_qbittorrent.py +133 -0
- rucio/transfertool/fts3.py +250 -138
- rucio/transfertool/fts3_plugins.py +152 -0
- rucio/transfertool/globus.py +9 -8
- rucio/transfertool/globus_library.py +1 -2
- rucio/transfertool/mock.py +21 -12
- rucio/transfertool/transfertool.py +33 -24
- rucio/vcsversion.py +4 -4
- rucio/version.py +5 -13
- rucio/web/__init__.py +0 -1
- rucio/web/rest/__init__.py +0 -1
- rucio/web/rest/flaskapi/__init__.py +0 -1
- rucio/web/rest/flaskapi/authenticated_bp.py +0 -1
- rucio/web/rest/flaskapi/v1/__init__.py +0 -1
- rucio/web/rest/flaskapi/v1/accountlimits.py +15 -13
- rucio/web/rest/flaskapi/v1/accounts.py +49 -48
- rucio/web/rest/flaskapi/v1/archives.py +12 -10
- rucio/web/rest/flaskapi/v1/auth.py +146 -144
- rucio/web/rest/flaskapi/v1/common.py +82 -41
- rucio/web/rest/flaskapi/v1/config.py +5 -6
- rucio/web/rest/flaskapi/v1/credentials.py +7 -8
- rucio/web/rest/flaskapi/v1/dids.py +158 -28
- rucio/web/rest/flaskapi/v1/dirac.py +8 -8
- rucio/web/rest/flaskapi/v1/export.py +3 -5
- rucio/web/rest/flaskapi/v1/heartbeats.py +3 -5
- rucio/web/rest/flaskapi/v1/identities.py +3 -5
- rucio/web/rest/flaskapi/v1/import.py +3 -4
- rucio/web/rest/flaskapi/v1/lifetime_exceptions.py +6 -9
- rucio/web/rest/flaskapi/v1/locks.py +2 -4
- rucio/web/rest/flaskapi/v1/main.py +10 -2
- rucio/web/rest/flaskapi/v1/{meta.py → meta_conventions.py} +26 -11
- rucio/web/rest/flaskapi/v1/metrics.py +1 -2
- rucio/web/rest/flaskapi/v1/nongrid_traces.py +4 -4
- rucio/web/rest/flaskapi/v1/ping.py +6 -7
- rucio/web/rest/flaskapi/v1/redirect.py +8 -9
- rucio/web/rest/flaskapi/v1/replicas.py +43 -19
- rucio/web/rest/flaskapi/v1/requests.py +178 -21
- rucio/web/rest/flaskapi/v1/rses.py +61 -26
- rucio/web/rest/flaskapi/v1/rules.py +48 -18
- rucio/web/rest/flaskapi/v1/scopes.py +3 -5
- rucio/web/rest/flaskapi/v1/subscriptions.py +22 -18
- rucio/web/rest/flaskapi/v1/traces.py +4 -4
- rucio/web/rest/flaskapi/v1/types.py +20 -0
- rucio/web/rest/flaskapi/v1/vos.py +3 -5
- rucio/web/rest/main.py +0 -1
- rucio/web/rest/metrics.py +0 -1
- rucio/web/rest/ping.py +27 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/ldap.cfg.template +1 -1
- rucio-35.8.0.data/data/rucio/requirements.server.txt +268 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/tools/bootstrap.py +3 -3
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/tools/merge_rucio_configs.py +2 -5
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/tools/reset_database.py +3 -3
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio +87 -85
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-abacus-account +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-abacus-collection-replica +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-abacus-rse +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-admin +45 -32
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-atropos +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-auditor +13 -7
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-automatix +1 -2
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-bb8 +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-c3po +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-cache-client +2 -3
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-cache-consumer +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-conveyor-finisher +1 -2
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-conveyor-poller +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-conveyor-preparer +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-conveyor-receiver +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-conveyor-stager +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-conveyor-submitter +2 -3
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-conveyor-throttler +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-dark-reaper +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-dumper +11 -10
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-follower +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-hermes +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-judge-cleaner +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-judge-evaluator +2 -3
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-judge-injector +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-judge-repairer +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-kronos +1 -3
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-minos +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-minos-temporary-expiration +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-necromancer +1 -2
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-oauth-manager +2 -3
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-reaper +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-replica-recoverer +6 -7
- rucio-35.8.0.data/scripts/rucio-rse-decommissioner +66 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-storage-consistency-actions +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-transmogrifier +0 -1
- {rucio-32.8.6.data → rucio-35.8.0.data}/scripts/rucio-undertaker +1 -2
- rucio-35.8.0.dist-info/METADATA +72 -0
- rucio-35.8.0.dist-info/RECORD +493 -0
- {rucio-32.8.6.dist-info → rucio-35.8.0.dist-info}/WHEEL +1 -1
- {rucio-32.8.6.dist-info → rucio-35.8.0.dist-info}/licenses/AUTHORS.rst +3 -0
- rucio/api/temporary_did.py +0 -49
- rucio/common/schema/cms.py +0 -478
- rucio/common/schema/lsst.py +0 -423
- rucio/core/permission/cms.py +0 -1166
- rucio/core/temporary_did.py +0 -188
- rucio/daemons/reaper/light_reaper.py +0 -255
- rucio/web/rest/flaskapi/v1/tmp_dids.py +0 -115
- rucio-32.8.6.data/data/rucio/requirements.txt +0 -55
- rucio-32.8.6.data/scripts/rucio-light-reaper +0 -53
- rucio-32.8.6.dist-info/METADATA +0 -83
- rucio-32.8.6.dist-info/RECORD +0 -481
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/alembic.ini.template +0 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/alembic_offline.ini.template +0 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/globus-config.yml.template +0 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl +0 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl +0 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl +0 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl +0 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/mail_templates/rule_denied_user.tmpl +0 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/mail_templates/rule_ok_notification.tmpl +0 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/rse-accounts.cfg.template +0 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/rucio.cfg.atlas.client.template +0 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/rucio.cfg.template +0 -0
- {rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/rucio_multi_vo.cfg.template +0 -0
- {rucio-32.8.6.dist-info → rucio-35.8.0.dist-info}/licenses/LICENSE +0 -0
- {rucio-32.8.6.dist-info → rucio-35.8.0.dist-info}/top_level.txt +0 -0
rucio-32.8.6.dist-info/METADATA
DELETED
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: rucio
|
|
3
|
-
Version: 32.8.6
|
|
4
|
-
Summary: Rucio Package
|
|
5
|
-
Home-page: https://rucio.cern.ch/
|
|
6
|
-
Author: Rucio
|
|
7
|
-
Author-email: rucio-dev@cern.ch
|
|
8
|
-
License: Apache License, Version 2.0
|
|
9
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
-
Classifier: Intended Audience :: Information Technology
|
|
12
|
-
Classifier: Intended Audience :: System Administrators
|
|
13
|
-
Classifier: Operating System :: POSIX :: Linux
|
|
14
|
-
Classifier: Natural Language :: English
|
|
15
|
-
Classifier: Programming Language :: Python
|
|
16
|
-
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
-
Classifier: Environment :: No Input/Output (Daemon)
|
|
20
|
-
Requires-Python: >=3.9, <4
|
|
21
|
-
License-File: LICENSE
|
|
22
|
-
License-File: AUTHORS.rst
|
|
23
|
-
Requires-Dist: requests<=2.31.0,>=2.25.1
|
|
24
|
-
Requires-Dist: urllib3~=1.26.16
|
|
25
|
-
Requires-Dist: dogpile.cache~=1.2.2
|
|
26
|
-
Requires-Dist: tabulate~=0.9.0
|
|
27
|
-
Requires-Dist: jsonschema~=4.18.4
|
|
28
|
-
Requires-Dist: paramiko~=3.4.0
|
|
29
|
-
Requires-Dist: argcomplete~=3.1.1
|
|
30
|
-
Requires-Dist: python-magic~=0.4.27
|
|
31
|
-
Requires-Dist: SQLAlchemy==2.0.19
|
|
32
|
-
Requires-Dist: alembic~=1.11.1
|
|
33
|
-
Requires-Dist: pymemcache==4.0.0
|
|
34
|
-
Requires-Dist: python-dateutil==2.8.2
|
|
35
|
-
Requires-Dist: stomp.py==8.1.0
|
|
36
|
-
Requires-Dist: statsd==4.0.1
|
|
37
|
-
Requires-Dist: geoip2==4.7.0
|
|
38
|
-
Requires-Dist: google-auth==2.22.0
|
|
39
|
-
Requires-Dist: redis==4.6.0
|
|
40
|
-
Requires-Dist: Flask==2.3.2
|
|
41
|
-
Requires-Dist: oic==1.6.1
|
|
42
|
-
Requires-Dist: prometheus_client==0.17.1
|
|
43
|
-
Requires-Dist: boto3==1.28.5
|
|
44
|
-
Provides-Extra: oracle
|
|
45
|
-
Requires-Dist: cx_oracle==8.3.0; extra == "oracle"
|
|
46
|
-
Provides-Extra: mongo
|
|
47
|
-
Requires-Dist: pymongo==4.4.1; extra == "mongo"
|
|
48
|
-
Provides-Extra: postgresql
|
|
49
|
-
Requires-Dist: psycopg2-binary==2.9.6; extra == "postgresql"
|
|
50
|
-
Provides-Extra: mysql
|
|
51
|
-
Requires-Dist: PyMySQL==1.1.0; extra == "mysql"
|
|
52
|
-
Provides-Extra: kerberos
|
|
53
|
-
Requires-Dist: kerberos~=1.3.1; extra == "kerberos"
|
|
54
|
-
Requires-Dist: pykerberos~=1.2.4; extra == "kerberos"
|
|
55
|
-
Requires-Dist: requests-kerberos>=0.14.0; extra == "kerberos"
|
|
56
|
-
Provides-Extra: globus
|
|
57
|
-
Requires-Dist: PyYAML==6.0.1; extra == "globus"
|
|
58
|
-
Requires-Dist: globus-sdk==3.24.0; extra == "globus"
|
|
59
|
-
Provides-Extra: saml
|
|
60
|
-
Requires-Dist: python3-saml==1.15.0; extra == "saml"
|
|
61
|
-
Provides-Extra: dev
|
|
62
|
-
Requires-Dist: PyYAML==6.0.1; extra == "dev"
|
|
63
|
-
Requires-Dist: pytest==7.4.0; extra == "dev"
|
|
64
|
-
Requires-Dist: pytest-xdist~=3.3.1; extra == "dev"
|
|
65
|
-
Requires-Dist: pyflakes==3.0.1; extra == "dev"
|
|
66
|
-
Requires-Dist: flake8==6.0.0; extra == "dev"
|
|
67
|
-
Requires-Dist: pycodestyle==2.10.0; extra == "dev"
|
|
68
|
-
Requires-Dist: pylint==3.0.0a7; extra == "dev"
|
|
69
|
-
Requires-Dist: virtualenv==20.24.0; extra == "dev"
|
|
70
|
-
Requires-Dist: xmltodict==0.13.0; extra == "dev"
|
|
71
|
-
Requires-Dist: pytz==2023.3; extra == "dev"
|
|
72
|
-
Requires-Dist: pydoc-markdown~=4.8.2; extra == "dev"
|
|
73
|
-
Requires-Dist: sh~=2.0.4; extra == "dev"
|
|
74
|
-
Dynamic: author
|
|
75
|
-
Dynamic: author-email
|
|
76
|
-
Dynamic: classifier
|
|
77
|
-
Dynamic: home-page
|
|
78
|
-
Dynamic: license
|
|
79
|
-
Dynamic: license-file
|
|
80
|
-
Dynamic: provides-extra
|
|
81
|
-
Dynamic: requires-dist
|
|
82
|
-
Dynamic: requires-python
|
|
83
|
-
Dynamic: summary
|
rucio-32.8.6.dist-info/RECORD
DELETED
|
@@ -1,481 +0,0 @@
|
|
|
1
|
-
rucio/__init__.py,sha256=twGL9AvTrRZ-AV0UHKFGJgiwlsWJXZjkgjzQAnxPf1Q,684
|
|
2
|
-
rucio/alembicrevision.py,sha256=lU27AtVHfRcaWdRNg9o7eIBcwdS3FH5rEnRmdD7Nxuw,714
|
|
3
|
-
rucio/vcsversion.py,sha256=HZFpwJrCkjkYT3b34AD_-MNZ2bZ1dOepKbE_5HVcUss,248
|
|
4
|
-
rucio/version.py,sha256=YRZVnvS6f-tucZRnXsmGZX-WNVFkiQ9nHHyor-7-hSw,1573
|
|
5
|
-
rucio/api/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
6
|
-
rucio/api/account.py,sha256=Qmw35GBnIScH_B3yCIGF-Bcja3THla48ICxfVw2zxOk,9316
|
|
7
|
-
rucio/api/account_limit.py,sha256=zjiuX7dbfEn5UAv-eO0vhqAh5AAh3k2DFadQ_N0Evm4,11419
|
|
8
|
-
rucio/api/authentication.py,sha256=DN1B-zas0wA520S-2DqP_r7v-NSxeL7sd8cbhjDDMyc,12914
|
|
9
|
-
rucio/api/config.py,sha256=DmtLCGuNWiBsFc6RYol-AxPwm2vbor6MuU6RBaGkFBI,8678
|
|
10
|
-
rucio/api/credential.py,sha256=hTZa5-rwHGOql3HHxMAaRiupx3UyHSp4S_lXwPF57ZA,2932
|
|
11
|
-
rucio/api/did.py,sha256=SBUP9TCwLV72rUahXOKhNvRpyp5yw05gBzc1gijJzm4,28229
|
|
12
|
-
rucio/api/dirac.py,sha256=19Z6kHoWdN8ojo8AgS98xSMghl-HEzy061HENkn1C6E,3055
|
|
13
|
-
rucio/api/exporter.py,sha256=PZGA2uVxK3Yca4DWjqaF1oRwORkd1dELCOPvP26L6jw,2129
|
|
14
|
-
rucio/api/heartbeat.py,sha256=or1b1T--nZ7BqgG0loeaZ9euZ7I-Mweb7us-UtXU2_0,2675
|
|
15
|
-
rucio/api/identity.py,sha256=yJdqibPE1o3R4UR_o2ivK3SLZIuson2T-wrHc70I99A,6853
|
|
16
|
-
rucio/api/importer.py,sha256=5OzjbMNXdGF2UEDHU_PDuPu5vixUIfHxhKr4tHw3yW4,1755
|
|
17
|
-
rucio/api/lifetime_exception.py,sha256=3hOXA1-S-stFo2iypTscwWlBNkpYwVeZ5lhKxBcEVxA,3709
|
|
18
|
-
rucio/api/lock.py,sha256=wsI9DDStXzgKoug_VuMKVFjYGvMz0T73oRBnGbQxEg4,4652
|
|
19
|
-
rucio/api/meta.py,sha256=gB9Hfet7WnM8e9eixYNy_6By_2YgFindbXvS9SOVQxk,3070
|
|
20
|
-
rucio/api/permission.py,sha256=aKAIUU_qMZKoJwCPrhFOjzCNeBLhJ4x3kFqiJKCftuY,2689
|
|
21
|
-
rucio/api/quarantined_replica.py,sha256=gqO9-8xyX1TEwO367hJRN0h0NUiRf9x_nUeYaFF4CK8,2519
|
|
22
|
-
rucio/api/replica.py,sha256=LmlqT7bgHNZIQtipxfrT87Hp3O9baIjBs8gN7-XZbcY,22422
|
|
23
|
-
rucio/api/request.py,sha256=eIwJMG2HjHD8vXoj9MQbSbXVz5xD4TZ7cPP0dqztf1w,9521
|
|
24
|
-
rucio/api/rse.py,sha256=-plIZmUIu8gVCifIi-DqW2x0d2thNX0ByyYgoCk9vRo,23605
|
|
25
|
-
rucio/api/rule.py,sha256=avEVmlmEjDkzDu-PmFQJPR2mZ1_7CF2TXCH-ldsJ3LE,15962
|
|
26
|
-
rucio/api/scope.py,sha256=lnEqBH7WiQjfSqiz-VyI-Z1JaWn0GQ5w77V7FDtHGwI,3027
|
|
27
|
-
rucio/api/subscription.py,sha256=PQE-fyiNYONre9roWd3qJidebbtZ6KPZs6YZOflkw2w,10561
|
|
28
|
-
rucio/api/temporary_did.py,sha256=l3ozeCOqriqbJSGOwIBXtSN-94zhDQwELAUTte0Gjfs,1814
|
|
29
|
-
rucio/api/vo.py,sha256=uwuxX_LJQt7TjbKd8cDzq04tdS8Ro7vfPJvPNd2BtF0,4583
|
|
30
|
-
rucio/client/__init__.py,sha256=55QYWLSEuixqgyKIVWJfirx960FLrzyEMFxOBchmom4,684
|
|
31
|
-
rucio/client/accountclient.py,sha256=ZVutas8r25IbwskD84SdRhYW_bdcK1QZFDJJaK_F6cA,16412
|
|
32
|
-
rucio/client/accountlimitclient.py,sha256=_6K_CmaDi8spFZ6LXViDUr26Tg1FeeCJ__JmTlQYMvk,6020
|
|
33
|
-
rucio/client/baseclient.py,sha256=4FLQFm6zdbzmXq4XIN7AVqDArTnrlK-wOw0B1KDveZo,47163
|
|
34
|
-
rucio/client/client.py,sha256=C81bWzgT7OGAa7PqVilfWSts1REJueY4AaX_yRXLW4o,3072
|
|
35
|
-
rucio/client/configclient.py,sha256=9FpXMHQBaBHK4FK2Y2LZ3zVqRCE-M7usLi4i3PMBsRs,4460
|
|
36
|
-
rucio/client/credentialclient.py,sha256=AlBjJJOUSb--oqCLjzhibhwgFsotVsP0NXwfRvOFnuM,2048
|
|
37
|
-
rucio/client/didclient.py,sha256=mrMQKMY3epi4sP6vTo4zN81cRBSCz-34wDFi4J8s1bg,28223
|
|
38
|
-
rucio/client/diracclient.py,sha256=4BhPhHgn__dxHNEp3kElnhHBFfUardcHpE2km5y3yyY,1991
|
|
39
|
-
rucio/client/downloadclient.py,sha256=Rq1z0fTZskV2yX-3HF6B41kmrRCdhyuz2xy18qQ0k3g,86127
|
|
40
|
-
rucio/client/exportclient.py,sha256=omWMAN7jtG1jF44Y--XcaTku_Xst-a8UNdtM5Oo6Rk0,1634
|
|
41
|
-
rucio/client/fileclient.py,sha256=cfh2wgmn81mjgDswd2Qtk-HIMfBvzPAiRjgoBJ2CCps,1669
|
|
42
|
-
rucio/client/importclient.py,sha256=0I3SQu7konqWUG7Jh-zIieoN_5cBHieyNO0UeE32GJA,1528
|
|
43
|
-
rucio/client/lifetimeclient.py,sha256=NqfWWWkL2_xEmjlbQg5d_JucAj5DP-vIUlvwOz5Gsrc,2881
|
|
44
|
-
rucio/client/lockclient.py,sha256=4NoPrPF0SBjN_pE0HXn1kftA21sh0uwjxvXsnA2-TWY,3973
|
|
45
|
-
rucio/client/metaclient.py,sha256=W7vlrk5PNteDdUFTqUX9sGMygMJlO9tfOcM-pui5Rf8,4722
|
|
46
|
-
rucio/client/pingclient.py,sha256=fR9h-H1UNzO2i97GruG650FaSA8sc05QixYNV5j7LF0,1414
|
|
47
|
-
rucio/client/replicaclient.py,sha256=fUvkSizRwp8B0GOM_VmnEQ__lGKy-_H7hNmmyZdUOuM,19343
|
|
48
|
-
rucio/client/requestclient.py,sha256=WXYDdLFuVJcaFxOJEij3nqbm3VpZHDxx97WsLog8OI0,4256
|
|
49
|
-
rucio/client/rseclient.py,sha256=-YvbhanIR70ddQUg2tboMbxWRaTwSab7PMmrGu0_4N4,27183
|
|
50
|
-
rucio/client/ruleclient.py,sha256=K-RMRHltJUU-wbJOerQynZEZCmF-dglqnWJ2u7l2xVY,12741
|
|
51
|
-
rucio/client/scopeclient.py,sha256=yAVD1VWEH5JGjblJ4Np6-THBoaz2rHUrUTkSvCyDfE8,3206
|
|
52
|
-
rucio/client/subscriptionclient.py,sha256=YgkSmQ1GxNav0rRwkuidDLSFybmQC9Hdqcq0tjxXUb4,7980
|
|
53
|
-
rucio/client/touchclient.py,sha256=_e7yLbtuaHfr9daf5nPjCc126eQ85Tny0iYG5hBtUuA,2701
|
|
54
|
-
rucio/client/uploadclient.py,sha256=yCDVw8Vor6DuXrHbI1yI5mEj8pJtPBQIKpFnHdFHMvs,46200
|
|
55
|
-
rucio/common/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
56
|
-
rucio/common/cache.py,sha256=qPnkBF2Gm5c5vBkW00LTnvjnfd6McNe6SPJD7tBf2fI,2297
|
|
57
|
-
rucio/common/config.py,sha256=r01dpOI2U0VfaFKmM8yAZGXB6upUslFK6IEPJrL_mCE,24306
|
|
58
|
-
rucio/common/constants.py,sha256=192U97S5VIXsa8fPHUNbhlT_iXV3QdxihivXRcb7sk4,3314
|
|
59
|
-
rucio/common/constraints.py,sha256=WiXEoU4scggR3KJzJsOJyAqLjZKrUWTsLwYf-sDO5F4,750
|
|
60
|
-
rucio/common/didtype.py,sha256=PinoKsiZJ6GsuUde4lcwx_tLUPtnXkVYN17hZ0zWO8s,6323
|
|
61
|
-
rucio/common/exception.py,sha256=j8a0BaSZDQr_WFCeY8lzh_-8LlsSXA22hr2rtKcyeyE,32369
|
|
62
|
-
rucio/common/extra.py,sha256=hmpUmgw9R_hreNJ_X11kCjeWq5rL6St9oaw3JiE8AsU,1422
|
|
63
|
-
rucio/common/logging.py,sha256=_gklh1XqTr41WfQamkyxHW7Lz53uLWh8Hcz2uqzsNNc,15070
|
|
64
|
-
rucio/common/pcache.py,sha256=yB4FjRlOC6R3fyHzrl826CkfA-cLR8CRyAFVMidzRCo,45324
|
|
65
|
-
rucio/common/policy.py,sha256=gew4oR3mwMWupKTgd4rZ7gKUK2YZGbgPIWgjtZ-O1Ig,3037
|
|
66
|
-
rucio/common/stomp_utils.py,sha256=JkPYNEa5F6J5QUhxW-YTMShwvhRE_Y2ukTtAQfB_TAY,5438
|
|
67
|
-
rucio/common/stopwatch.py,sha256=p9OD5zv1jbo5SRyRptpr0zGYbUskmACZfCiM3R1rhxY,1665
|
|
68
|
-
rucio/common/test_rucio_server.py,sha256=g3HRli56tX1TvI2_vQwzssY0fFhaYmfpg4TCY-MPSnI,4929
|
|
69
|
-
rucio/common/types.py,sha256=Dl2vwnDMlECIPaXAFSJM6ltQMD3TZdfDIqNX1ikBvms,4587
|
|
70
|
-
rucio/common/utils.py,sha256=Hy3blAwLE2wJ2_FYYVHdn3yby1Uir_Zle29wM_fUR5Q,69433
|
|
71
|
-
rucio/common/dumper/__init__.py,sha256=qYj5ceTNUN7Sh6xJw0WD1z3rRutcN-5Ywm0tB8yJFe8,9183
|
|
72
|
-
rucio/common/dumper/consistency.py,sha256=y0tRSgcw9LO4VPshosk0_1VYiTL-ASavdGoGlovtXsY,16097
|
|
73
|
-
rucio/common/dumper/data_models.py,sha256=WUvZOs1KohvZSMxzVg5f3ZSdrIzfhqcTqdvMORmqWbw,9913
|
|
74
|
-
rucio/common/dumper/path_parsing.py,sha256=DAdpOHnQk6sd7jzyb_2g68ZM2A7SwIuziZupiSl3d-k,1947
|
|
75
|
-
rucio/common/schema/__init__.py,sha256=LJifsVgQqykj9MnBlqt9X4J7Hd0V3p6QCojTFrYMMdQ,5176
|
|
76
|
-
rucio/common/schema/atlas.py,sha256=-4q7q7BEW8LR6Q88P6_Mfe_ZuVDGwB8AJw-Q2akrwRs,15613
|
|
77
|
-
rucio/common/schema/belleii.py,sha256=-dV4VCvFafNZEkObdPy27zSdjY14C5L1WUuc_wa2U6I,15430
|
|
78
|
-
rucio/common/schema/cms.py,sha256=QS6En5L4gOIGOgHGueCdE66RPMNKW9rnGrb5q3JH1q8,18547
|
|
79
|
-
rucio/common/schema/domatpc.py,sha256=vRewL2hp1qONX7Bud6C115Ei2D0XVz-WtDDNHLD5AH4,15011
|
|
80
|
-
rucio/common/schema/escape.py,sha256=iVD7s3uW836wmvm4UYJPXu8-lSKKWutJOA52uB5FVV4,15950
|
|
81
|
-
rucio/common/schema/generic.py,sha256=AMuDoz0L5t-rzBHhOBJt2rhLWAIxyJZdizgr1cMeYow,16265
|
|
82
|
-
rucio/common/schema/generic_multi_vo.py,sha256=qiqZhskbtcxQTqGZsrUJgAn7XgU05HaycZtDPzGKkOk,15492
|
|
83
|
-
rucio/common/schema/icecube.py,sha256=SBe9ctW_RA66JnhTVAFhZeJ0mk_QaeWbzstFLBd_2As,15301
|
|
84
|
-
rucio/common/schema/lsst.py,sha256=Zjow2SeOT2jFjllqXSPFkPpvzqd6Mi0aTsy94K8BYw8,15909
|
|
85
|
-
rucio/core/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
86
|
-
rucio/core/account.py,sha256=wBVGVcEtf65ahr-Ht3S4RFVW0VgqYK4-nta1PgDaaZk,14976
|
|
87
|
-
rucio/core/account_counter.py,sha256=pxXybiWYBwiInvLp_L9afZlSm0ABqbWHX3VFRR3CUdY,6317
|
|
88
|
-
rucio/core/account_limit.py,sha256=KODSPraZS-q4Q_26G0PmkYuqXgyv583vnt1dscuWzf0,14302
|
|
89
|
-
rucio/core/authentication.py,sha256=VQ5r4FKg0VO0h9nCMHgioIyF5NW-l876ODssYgFmJBk,19833
|
|
90
|
-
rucio/core/config.py,sha256=b9ndPlRcg9i3AQf_bIDktT9WYXaIpmUXzjiWKW-3U5I,13304
|
|
91
|
-
rucio/core/credential.py,sha256=q3n6lGcw1E4Juddj8n9v9AYnuGbX43b-QfitWMlvb44,8160
|
|
92
|
-
rucio/core/did.py,sha256=bQDskt47FHs27l7l3jpHtLClU2XdTN_Qu3PDUMJ4F9I,124855
|
|
93
|
-
rucio/core/dirac.py,sha256=V-VTBGm6brxaADn9OOywzIzXcrv61GlrJtHKl2mFoZM,9021
|
|
94
|
-
rucio/core/distance.py,sha256=7e4aAgI2yFYWOrZukkVnb6H2jBtMhjCtZGZcErRVcfA,5457
|
|
95
|
-
rucio/core/exporter.py,sha256=of0mHxdiWM6h3V9Tiu09mCgopy7KNvihDtF3m60zy6s,1803
|
|
96
|
-
rucio/core/heartbeat.py,sha256=ce852GtdYJ29fBIUnDDsEGuZ9HSNpAGKxDGDQRlGUKI,10364
|
|
97
|
-
rucio/core/identity.py,sha256=xcsB8NLnJDCjsz--3mE75m72MNAqu5ux1uol0LZTmFQ,11878
|
|
98
|
-
rucio/core/importer.py,sha256=KFyc08TzosGBKdB8vG2sC_VrmtDrwP-nI_Vod_CJmhY,13797
|
|
99
|
-
rucio/core/lifetime_exception.py,sha256=PKvlabAG6TOGmjWvxTx9D6erHJPoCOboBrHJlx4JI1E,15257
|
|
100
|
-
rucio/core/lock.py,sha256=vrsixZPiNf-vI-mR_x4FO4bCRlydVUFMNFNFBzaUihE,22831
|
|
101
|
-
rucio/core/message.py,sha256=_xx4lW4sIMLcjBTnWw_pUQU3NAnxRXkt6XJOKXHrEWs,9716
|
|
102
|
-
rucio/core/meta.py,sha256=MSHU3v_NmHeAckKlJIL_rpNFDRvOo6iIXKhEoscf1pU,7637
|
|
103
|
-
rucio/core/monitor.py,sha256=DZAoL52-GJ0wZY3qYK2skx5khCM40MOGx1f8Qfz6qz0,15825
|
|
104
|
-
rucio/core/naming_convention.py,sha256=WXkpyfT6gBKN4FVemjL_hHzsO85X8-YBQGp3PN92i68,5419
|
|
105
|
-
rucio/core/nongrid_trace.py,sha256=rlTtiiHyju7aNEHl2VpHEbTbmdj6TtM8ia5FGZsbjYs,4914
|
|
106
|
-
rucio/core/oidc.py,sha256=dQO38BuU9wYZUzzhaM8Hp-l5qLU3T2lRCL1fYO2_bnM,66049
|
|
107
|
-
rucio/core/quarantined_replica.py,sha256=1ny1YORXvWGHXx96T-WPpEXRbyKIB_7rEOyHUFjtnhg,7784
|
|
108
|
-
rucio/core/replica.py,sha256=G_o_a3-HCYaIck2G2XBdtc3WpWIlNv-MHFxm3kIjvIQ,176480
|
|
109
|
-
rucio/core/replica_sorter.py,sha256=2swGoFp9sSbUrI_0kSIu64G-XNEOyzjCc9eFT6-nHYQ,15444
|
|
110
|
-
rucio/core/request.py,sha256=oSiEYYy-U91nW676sATWrNshZzLK8_B2Tqz27sjTNro,87842
|
|
111
|
-
rucio/core/rse.py,sha256=j5SYrT7UC5_m0GMtlb8EJjfP_iqdhup1bSSTO2v_aaI,65889
|
|
112
|
-
rucio/core/rse_counter.py,sha256=xGWmI5tI5YO4YsXtblDPqd6_9_S1I4K1R78y2sBzSZc,5534
|
|
113
|
-
rucio/core/rse_expression_parser.py,sha256=zaA8Ewmcj3fWPurgNyjZGtrr2IQBKDjBObl406_jgu4,15401
|
|
114
|
-
rucio/core/rse_selector.py,sha256=XlvnBO6vL3VzX2WYymRWb3-rbFr8n7Qn9_RZbPTELRg,13958
|
|
115
|
-
rucio/core/rule.py,sha256=iy-Mo78J-HU6tTH1c-8vJE9sg4Th9UudQwA8Gr33bHo,185143
|
|
116
|
-
rucio/core/rule_grouping.py,sha256=eUtPyJu80T-mIqgvOVoJT3eOzOajfJ_Jx62YQuchqDI,91178
|
|
117
|
-
rucio/core/scope.py,sha256=beDUJsw9E3kmZubq51alnPILKvZUgrK9ekyQMRX80kI,5388
|
|
118
|
-
rucio/core/subscription.py,sha256=D33JnDtKnitdSjEO2J8ShD2hwiCa61fJaR7ElYpUpuw,15254
|
|
119
|
-
rucio/core/temporary_did.py,sha256=j2AeYxwGhsXHN2RM0rKVFX69UMd1QcxRlIteMdd-DPg,7467
|
|
120
|
-
rucio/core/topology.py,sha256=bVDN6mOzDJzgye5UdpuCgOuwx-KuzgQgNyE0rpMj3n0,17645
|
|
121
|
-
rucio/core/trace.py,sha256=o8ULgG9c5M6eKCKwgxJGVK8QCX2Zlukw2liVTTLaa9g,13131
|
|
122
|
-
rucio/core/transfer.py,sha256=6cHkSvsP41mPmLxeI17UXDcyGCDsMG9ptzmUcKGMGJU,53143
|
|
123
|
-
rucio/core/vo.py,sha256=ZOxEDhUuJEu_kH9hV3WVsYZ2tkKx3-XrimcXzLUqIeU,5531
|
|
124
|
-
rucio/core/volatile_replica.py,sha256=WPY3yw9FXhCzPBE6ZYp8xH7tccyRJepiCsc8sK_yfx0,5035
|
|
125
|
-
rucio/core/did_meta_plugins/__init__.py,sha256=Vj1qAAbBfiPsVDDeSZOovrbCJmK9tWAJX49T9iB-8cI,11757
|
|
126
|
-
rucio/core/did_meta_plugins/did_column_meta.py,sha256=imrosPqqX3SRSxIgNX7X79t6OTls8DgsErkJVi1c41g,17498
|
|
127
|
-
rucio/core/did_meta_plugins/did_meta_plugin_interface.py,sha256=q_JWsCY1jQy13NolYRfCb6PmhUiL_7BTUxW5NX-USbM,4109
|
|
128
|
-
rucio/core/did_meta_plugins/filter_engine.py,sha256=LuXa1L2dWbp7icvJNDmWnew-bK1H4v-r1bf9fXiD6mM,29329
|
|
129
|
-
rucio/core/did_meta_plugins/json_meta.py,sha256=JI1XcxUopHRvZl9F2J0FOi79X0u3e5W-KgNAeGq_N_A,9269
|
|
130
|
-
rucio/core/did_meta_plugins/mongo_meta.py,sha256=agHI9X4SFiYu_lbGShqdeygtZFfotU2zmP3GOhwlp6Y,7500
|
|
131
|
-
rucio/core/did_meta_plugins/postgres_meta.py,sha256=Gk6NJFEn0N-8LAW4K3S-8voL0tvlJ_e74sCaiH0M7DQ,13774
|
|
132
|
-
rucio/core/permission/__init__.py,sha256=24HS89FhEp2H25lGl3zQbS8SXPmbYllVBlUpUyjKkHY,3933
|
|
133
|
-
rucio/core/permission/atlas.py,sha256=R4WvSMXOMKFcJiFor-pk-smlygheBwcXmtBmMYAM4t8,54916
|
|
134
|
-
rucio/core/permission/belleii.py,sha256=FjCAkF1kLAOFgOoJdUP0ApU7Vo62CIJx4MC7BUCQlx4,46931
|
|
135
|
-
rucio/core/permission/cms.py,sha256=hXfqSLiOG25kZMcZQ1zC1I7QRRBQgvl1gsPxQAzpAf4,46779
|
|
136
|
-
rucio/core/permission/escape.py,sha256=itZjUUB0Ux7BBxDnYdiWwJBxjCo9XSd4tfbTcjeOd-A,43126
|
|
137
|
-
rucio/core/permission/generic.py,sha256=KP1UCYfPpXz_h46aH04toNIermDf3mnVUxkaWDcgdas,45329
|
|
138
|
-
rucio/core/permission/generic_multi_vo.py,sha256=nIh29uNI5L_Xhu3nOCGaCzmEhnUtqddsupATDBE2dSg,45875
|
|
139
|
-
rucio/daemons/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
140
|
-
rucio/daemons/common.py,sha256=82IVEdr0QP7vbAOblDa0RXN1jfj_3AfJLMJiXIw3am8,14971
|
|
141
|
-
rucio/daemons/abacus/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
142
|
-
rucio/daemons/abacus/account.py,sha256=qan6Ci5S2TXKuvNoKiRL-Q-AZNGtn39HpyW22xkV_-I,3760
|
|
143
|
-
rucio/daemons/abacus/collection_replica.py,sha256=qL7RPVM87txMZZw6AiQXmpynmT3gnSP3zWCLI8GUum4,3880
|
|
144
|
-
rucio/daemons/abacus/rse.py,sha256=4Zawn4KnzzNWWVTMdL6eXnXFWOsWHkJbMlaebAoN6XI,3620
|
|
145
|
-
rucio/daemons/atropos/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
146
|
-
rucio/daemons/atropos/atropos.py,sha256=9qmFja4SsuXOg9mx6mhDZ8OtWaKmjeXNuYVEmuV7nSM,10583
|
|
147
|
-
rucio/daemons/auditor/__init__.py,sha256=sF0oEGRosGfxOAKAAtOAp2aK_EwgZbf8ua6y_R8PQj0,10105
|
|
148
|
-
rucio/daemons/auditor/hdfs.py,sha256=r2Cr57PdDky6uoVJZ7_SuKjddGe6UyG8SJoUnYy5-lY,2920
|
|
149
|
-
rucio/daemons/auditor/srmdumps.py,sha256=R4YCbqARHmNMg8JTsgJbZEubw9ZUvGSVxQZTyu4nIrA,8687
|
|
150
|
-
rucio/daemons/automatix/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
151
|
-
rucio/daemons/automatix/automatix.py,sha256=je4eDKTmLqZIR4acQsDb_1vbQYVYWbKn0NtChzhWCco,9938
|
|
152
|
-
rucio/daemons/badreplicas/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
153
|
-
rucio/daemons/badreplicas/minos.py,sha256=uGgY0EnzCTL9tKA07ys3g2bSQO1Zu40PjgOyexVDrlM,15688
|
|
154
|
-
rucio/daemons/badreplicas/minos_temporary_expiration.py,sha256=WTkcRtgiKeBb6BmHNYoA3ny6y2_w_xqWNzNi0j_kFdI,8552
|
|
155
|
-
rucio/daemons/badreplicas/necromancer.py,sha256=lNLZErRCDnJvKzbh-huSLENVWunRschQpRhzdKIoG7w,9777
|
|
156
|
-
rucio/daemons/bb8/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
157
|
-
rucio/daemons/bb8/bb8.py,sha256=BnvdI8CElDjQxUij_qqh2CWsoRYDnTeNm_RMRZEM9Yw,13095
|
|
158
|
-
rucio/daemons/bb8/common.py,sha256=s2Oh9pEUacZrEMXRthH-KxWVVk84eTvxqE9RmPWMnDY,26621
|
|
159
|
-
rucio/daemons/bb8/nuclei_background_rebalance.py,sha256=NVXmKUkSPyc-B8_XGXrpgrI2dw7prdJW7VD8C7UyW8k,6668
|
|
160
|
-
rucio/daemons/bb8/t2_background_rebalance.py,sha256=5d8MMq8sHI-Wj7Y1iCKYUwVOsOSGthuGIKTpJNIrU6M,6546
|
|
161
|
-
rucio/daemons/c3po/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
162
|
-
rucio/daemons/c3po/c3po.py,sha256=VS7osp6DXx1SftmEyKt7ld8oX9tv2UO8jLCl7lE4eSc,15033
|
|
163
|
-
rucio/daemons/c3po/algorithms/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
164
|
-
rucio/daemons/c3po/algorithms/simple.py,sha256=5hhVLHjNkLxR3pBQt3WaV3hntKSc2H1yeeANMkb8J68,4595
|
|
165
|
-
rucio/daemons/c3po/algorithms/t2_free_space.py,sha256=-x4ldMUD6yX6AGmoVJjNfye9MNmDOnUKr2PQM7lbwbQ,4675
|
|
166
|
-
rucio/daemons/c3po/algorithms/t2_free_space_only_pop.py,sha256=5EFlEqFEZzbGbzcQmDiz3ZiCG5SLzwoqpaSHg_KegOo,4798
|
|
167
|
-
rucio/daemons/c3po/algorithms/t2_free_space_only_pop_with_network.py,sha256=SgvYkL0_HrkbsQLQiAyI6j8dapG-yJ3ZEpYyBetf_iU,12175
|
|
168
|
-
rucio/daemons/c3po/collectors/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
169
|
-
rucio/daemons/c3po/collectors/agis.py,sha256=Faz2X8QaA8Ppet6ThM9tfxqHmHckpgqYi78rMZPFHDI,3301
|
|
170
|
-
rucio/daemons/c3po/collectors/free_space.py,sha256=QU2HzxvVtAGPxgTn5wQHKRAomvLc1xbuiJwqecQiE_o,2134
|
|
171
|
-
rucio/daemons/c3po/collectors/jedi_did.py,sha256=5v0GMC8ayTjtXaoklunAFVBVcc1TD5C7s9SZGu5vwVM,1674
|
|
172
|
-
rucio/daemons/c3po/collectors/mock_did.py,sha256=dvDDi7unz3w-VTiCYOwTHlHS3_OuYT4SVS_LCLR8l-8,1370
|
|
173
|
-
rucio/daemons/c3po/collectors/network_metrics.py,sha256=bycccMyvm3QCKfUxuYBIKsaRqbfdoorEqgssMBR4fXQ,2100
|
|
174
|
-
rucio/daemons/c3po/collectors/workload.py,sha256=LY2bbtZdR0rznj1TXp4IcvllStNigufRCbshEs61Ipw,3858
|
|
175
|
-
rucio/daemons/c3po/utils/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
176
|
-
rucio/daemons/c3po/utils/dataset_cache.py,sha256=TfdgkAIDg8Jw5I3DjbYknyyxNaYSHYjdeXTAo-hmrnE,1418
|
|
177
|
-
rucio/daemons/c3po/utils/expiring_dataset_cache.py,sha256=7da7qTWbhJvD2NCGBokOqD1YlB5o_or1E9_HbIhlMjI,1555
|
|
178
|
-
rucio/daemons/c3po/utils/expiring_list.py,sha256=E_GOLShmwXqALMAFBZusw5vqKEHWDM4Vwsfnwy6iXMM,1628
|
|
179
|
-
rucio/daemons/c3po/utils/popularity.py,sha256=YTfPJ-1jFcqdoO7SEv4RxtLTBfXIWfdYUCwAk9eGlr8,2464
|
|
180
|
-
rucio/daemons/c3po/utils/timeseries.py,sha256=-aHPScB9SYDoRjor1BF3uy83nLj1ioKCQzVedYsp5Pg,2119
|
|
181
|
-
rucio/daemons/cache/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
182
|
-
rucio/daemons/cache/consumer.py,sha256=bQo-je2apqmJohQ36vYDKluDGDDaXUJCFCcKq5hGXOU,6744
|
|
183
|
-
rucio/daemons/conveyor/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
184
|
-
rucio/daemons/conveyor/common.py,sha256=XzvnGwoqtxGyGh80iDDG-8cW01xYcaDslJCE7U5Kjjc,25377
|
|
185
|
-
rucio/daemons/conveyor/finisher.py,sha256=Z_jIW5q9VLI9V4QdU_qgXFeb9LnqLw1PSaVcgSn5Wcs,23438
|
|
186
|
-
rucio/daemons/conveyor/poller.py,sha256=kz3J3-SvpuZjt3eM5zIIhwEq3nzviAmO2znx99VW8VM,15349
|
|
187
|
-
rucio/daemons/conveyor/preparer.py,sha256=g7i1j-xUvAZvf28VnSdVtZ-PdPEfF_N6nDWNaLp504Y,7457
|
|
188
|
-
rucio/daemons/conveyor/receiver.py,sha256=dy6qWYdjn3PukZ_lo3M9YNdIL-6Brmhzmr8LPr4ERdU,7580
|
|
189
|
-
rucio/daemons/conveyor/stager.py,sha256=hndEpZ-kka5G8j2G0HnnJL33Sv6NMeWnrHbFHcFi3ik,3851
|
|
190
|
-
rucio/daemons/conveyor/submitter.py,sha256=SBcBMxTPaX-7yQjlnCr3iSDWlOy1EIDNWU5zjO1BlrM,15103
|
|
191
|
-
rucio/daemons/conveyor/throttler.py,sha256=3JW-I9GytOsWLVO7akXlC-DAlCNIGwZBn2NJGlJUFUA,20340
|
|
192
|
-
rucio/daemons/follower/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
193
|
-
rucio/daemons/follower/follower.py,sha256=re2Jj2oLsJou7FebgnURLilaxH0_krz0_5h5YoBeD9M,3379
|
|
194
|
-
rucio/daemons/hermes/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
195
|
-
rucio/daemons/hermes/hermes.py,sha256=zQctVb9NOtDbggMz2zHl8GG0XNZ6KhRxgU-w9hXcfsk,26010
|
|
196
|
-
rucio/daemons/judge/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
197
|
-
rucio/daemons/judge/cleaner.py,sha256=PNAeDjB_cOuuEYTC2s7czm5ttxi4ywTtqL9yA4pTi8I,5649
|
|
198
|
-
rucio/daemons/judge/evaluator.py,sha256=w2F0E9ubL0jL-BSiDvqPyjSq6Mj48B20UWAZNW-7EZM,6945
|
|
199
|
-
rucio/daemons/judge/injector.py,sha256=x9iZCai_S_F8Nw3Q0oJS6j1oW_JzX1gx7VSiyzpwcC8,6304
|
|
200
|
-
rucio/daemons/judge/repairer.py,sha256=TZtY1u52-LCHI9SOTWxmxSuX29lvcI_ZGQigrym6p2c,5216
|
|
201
|
-
rucio/daemons/oauthmanager/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
202
|
-
rucio/daemons/oauthmanager/oauthmanager.py,sha256=ejck15q-wEQtjLLvvwNcbw2AR7ugmdKNGCXBcLWHSHc,8735
|
|
203
|
-
rucio/daemons/reaper/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
204
|
-
rucio/daemons/reaper/dark_reaper.py,sha256=Pd9ebwc-M_XlS9hcsjeizV7brUSOzOiZH_ANmwvyR5g,11410
|
|
205
|
-
rucio/daemons/reaper/light_reaper.py,sha256=ETv0leggcBFPwnJsUIouOwiIb87oRqolnYWLA15kobA,11778
|
|
206
|
-
rucio/daemons/reaper/reaper.py,sha256=Kt28eY_RGnpONeUVFA9GjWBff8CATmtj6_HX0Eo6YpU,35938
|
|
207
|
-
rucio/daemons/replicarecoverer/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
208
|
-
rucio/daemons/replicarecoverer/suspicious_replica_recoverer.py,sha256=et29NeEgxRs1IDTLVSW9qKpmkrtE9iEaqtWKEg64s7g,27945
|
|
209
|
-
rucio/daemons/storage/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
210
|
-
rucio/daemons/storage/consistency/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
211
|
-
rucio/daemons/storage/consistency/actions.py,sha256=E66IUb2lU4aMCokyIiK-WaanqB-2v1zJ12An-Magz_Y,29595
|
|
212
|
-
rucio/daemons/tracer/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
213
|
-
rucio/daemons/tracer/kronos.py,sha256=s67gQzrFDBQ7U5Yg-zO2ELrLzCc-U56XtSSWDfG2NM0,23772
|
|
214
|
-
rucio/daemons/transmogrifier/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
215
|
-
rucio/daemons/transmogrifier/transmogrifier.py,sha256=ZPyNjQTDfMlYdLZMZOae-7L2nl-FOyUsGr6LQHLY-yM,30552
|
|
216
|
-
rucio/daemons/undertaker/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
217
|
-
rucio/daemons/undertaker/undertaker.py,sha256=zT_XTksyhXorug4aHC-V2Xu_Uw1SXyvPoESXXitVHEQ,5080
|
|
218
|
-
rucio/db/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
219
|
-
rucio/db/sqla/__init__.py,sha256=KnV23fS4Zf2_RsawnS5vAh_VJIH3MHsZp3_ki1aqCL4,2154
|
|
220
|
-
rucio/db/sqla/constants.py,sha256=yJM2OMZSwNPIM1CwDkHbiJ-yIR7fL12TvFx9KwIs8sE,3806
|
|
221
|
-
rucio/db/sqla/models.py,sha256=Jtd9AYlg-xnkJyVwRnKJne-Iuth0zX7hlROTFcL0MmA,113277
|
|
222
|
-
rucio/db/sqla/sautils.py,sha256=5z0Fbyuu4fnPmISAXRLSMcT1nlolOdoEBFlJCB0q4DI,1678
|
|
223
|
-
rucio/db/sqla/session.py,sha256=UPv4wc28K_DmYMdLslCGEx5gSJ3QcGqnwdxZxBgp6IM,17797
|
|
224
|
-
rucio/db/sqla/types.py,sha256=2bYcL9H1FguxPXDVa4UZ8lspGaOK5o9LHR7VP3LOOgE,6112
|
|
225
|
-
rucio/db/sqla/util.py,sha256=d8F1cKa_w0mI5Be8VuUOqgS9PKhkZeZCsM1oFG0hFvM,21450
|
|
226
|
-
rucio/db/sqla/migrate_repo/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
227
|
-
rucio/db/sqla/migrate_repo/env.py,sha256=gycAmEu7mBHNI6Rs-WiDXflhWBcRDiujyB9SWZwmy1Q,3569
|
|
228
|
-
rucio/db/sqla/migrate_repo/versions/01eaf73ab656_add_new_rule_notification_state_progress.py,sha256=YJEpvf7o_h5sKG-mirEsCCN6ARAIKyhouUOB-kC7rFw,3364
|
|
229
|
-
rucio/db/sqla/migrate_repo/versions/0437a40dbfd1_add_eol_at_in_rules.py,sha256=ZSUGv8ahleK1MKMheqHnI8RFCS5WmBK9vcj4jbczcxg,1847
|
|
230
|
-
rucio/db/sqla/migrate_repo/versions/0f1adb7a599a_create_transfer_hops_table.py,sha256=8AYK-voq_AGLO3i7_VneJLvGrE78cljqIFevhT7nBUk,2690
|
|
231
|
-
rucio/db/sqla/migrate_repo/versions/102efcf145f4_added_stuck_at_column_to_rules.py,sha256=uI6f7Y8BGD-dqOD2yfCLHkCQ8ss8ZtNyJTmcC6G6rBg,1559
|
|
232
|
-
rucio/db/sqla/migrate_repo/versions/13d4f70c66a9_introduce_transfer_limits.py,sha256=N4yPmR4ow1ufIXIrLMkr2Q_rFROLIeGKWqX22BwTMKs,5322
|
|
233
|
-
rucio/db/sqla/migrate_repo/versions/140fef722e91_cleanup_distances_table.py,sha256=kBGxQXM-EMnh86iVXc38glQSr4cxaoIQPvR8m5eTD8w,3684
|
|
234
|
-
rucio/db/sqla/migrate_repo/versions/14ec5aeb64cf_add_request_external_host.py,sha256=Z3U1dFa9RnbedawAik2PfCe8xYFt2HP8zDCDlLpvVX8,1574
|
|
235
|
-
rucio/db/sqla/migrate_repo/versions/156fb5b5a14_add_request_type_to_requests_idx.py,sha256=IwQOBPYxsnoq00c9xidvoTKqeZkmAxTu7HPKBqfbdP4,2342
|
|
236
|
-
rucio/db/sqla/migrate_repo/versions/1677d4d803c8_split_rse_availability_into_multiple.py,sha256=fAaFVUnFB4sJWMAnEpMa2xzYG9jWTNePhFfJHHHOP4M,2840
|
|
237
|
-
rucio/db/sqla/migrate_repo/versions/16a0aca82e12_create_index_on_table_replicas_path.py,sha256=FdWIMqI94eu0W5jP0ysrfNK_EDh0SlN7_7mR6Rp0Yxg,1285
|
|
238
|
-
rucio/db/sqla/migrate_repo/versions/1803333ac20f_adding_provenance_and_phys_group.py,sha256=gFeQ8_INx4Ay8_iyfLiwt80KyhDeTFcDxoV0GgfixwE,1702
|
|
239
|
-
rucio/db/sqla/migrate_repo/versions/1a29d6a9504c_add_didtype_chck_to_requests.py,sha256=46aCERmXJuQIoWb0MgdX15DVgtwDqM9d4ckg3la4ULE,2699
|
|
240
|
-
rucio/db/sqla/migrate_repo/versions/1a80adff031a_create_index_on_rules_hist_recent.py,sha256=qm-Lk71pmOdx0zE9upW7k-DpqweLtq5uOC2jCNE8ytw,1339
|
|
241
|
-
rucio/db/sqla/migrate_repo/versions/1c45d9730ca6_increase_identity_length.py,sha256=c0DPnHrWQ4CEye-sCdMyNwW0Zb77vH8mKWYUk0Ez3F8,8518
|
|
242
|
-
rucio/db/sqla/migrate_repo/versions/1d1215494e95_add_quarantined_replicas_table.py,sha256=QXlzjjX0LsBUOtesa5M1TuoDzzTaT4KJvr9IKyW9Prk,3327
|
|
243
|
-
rucio/db/sqla/migrate_repo/versions/1d96f484df21_asynchronous_rules_and_rule_approval.py,sha256=i6RF95i08O3EL8XPtR-L71ck1cP9-ySL3m01gRR40sk,3806
|
|
244
|
-
rucio/db/sqla/migrate_repo/versions/1f46c5f240ac_add_bytes_column_to_bad_replicas.py,sha256=VuK-qxZxP5E1xce0AIFTGWlvsD77HwTLy8HuCFKzgiw,1572
|
|
245
|
-
rucio/db/sqla/migrate_repo/versions/1fc15ab60d43_add_message_history_table.py,sha256=GycIQJQET2uksQDvANbiNcBapb5nXFFqPlX-byrajSM,1716
|
|
246
|
-
rucio/db/sqla/migrate_repo/versions/2190e703eb6e_move_rse_settings_to_rse_attributes.py,sha256=rJT-EgIKgDkRtTGziqpZaP-Z4mlLlQtrU5cpUw3o-J4,4386
|
|
247
|
-
rucio/db/sqla/migrate_repo/versions/21d6b9dc9961_add_mismatch_scheme_state_to_requests.py,sha256=SO3Zji5gHFqvpCqRDlXGmk4x_JlupU8YtMoC_J0_erQ,3038
|
|
248
|
-
rucio/db/sqla/migrate_repo/versions/22cf51430c78_add_availability_column_to_table_rses.py,sha256=iIi0MorCdJDVOtfHJ5BunhxgdWvXomepyOARGySn1n4,1523
|
|
249
|
-
rucio/db/sqla/migrate_repo/versions/22d887e4ec0a_create_sources_table.py,sha256=prSm5N8axNVU0uygsEVTKXgsUC62qH5TfOe2wrvuT0w,2831
|
|
250
|
-
rucio/db/sqla/migrate_repo/versions/25821a8a45a3_remove_unique_constraint_on_requests.py,sha256=JGXSmEA-WMw1soIc2oM5MnanXRUTd21zC2K0eG1O_0s,2348
|
|
251
|
-
rucio/db/sqla/migrate_repo/versions/25fc855625cf_added_unique_constraint_to_rules.py,sha256=kveRKyMXf2tYf3d1N6DWO9VDuqIJF22cTOwXVG-wZS8,1425
|
|
252
|
-
rucio/db/sqla/migrate_repo/versions/269fee20dee9_add_repair_cnt_to_locks.py,sha256=SbhJUacUtrjCJe6AtaopnVt9GSe4a_jkrUitU-omyg8,1561
|
|
253
|
-
rucio/db/sqla/migrate_repo/versions/271a46ea6244_add_ignore_availability_column_to_rules.py,sha256=bKOCi_tg5vAiV2auw8VWYnFcXwRjpdGWoHtueeoziy0,1667
|
|
254
|
-
rucio/db/sqla/migrate_repo/versions/277b5fbb41d3_switch_heartbeats_executable.py,sha256=9sZv6J2ACVYLMr9vtuxAEb3BhPMcYSCqqKJr3aOuj28,2298
|
|
255
|
-
rucio/db/sqla/migrate_repo/versions/27e3a68927fb_remove_replicas_tombstone_and_replicas_.py,sha256=ImZ_WlrJIL_g2JdwC8RszBl82U1dW2hrAjCYzvrkDkA,1243
|
|
256
|
-
rucio/db/sqla/migrate_repo/versions/2854cd9e168_added_rule_id_column.py,sha256=XTqVetANH0bjZmMSG3Njf1AuWgcoqyqrobs6l0HzmsA,1734
|
|
257
|
-
rucio/db/sqla/migrate_repo/versions/295289b5a800_processed_by_and__at_in_requests.py,sha256=GKe7zm72fsmSOvEXoYvZDhRozb-vSfG8_L7wAtbuwyQ,1748
|
|
258
|
-
rucio/db/sqla/migrate_repo/versions/2962ece31cf4_add_nbaccesses_column_in_the_did_table.py,sha256=J66xF_gK981JgdLEv7bSvXO_PXmvo4qvVV5_Xr18k-Q,1721
|
|
259
|
-
rucio/db/sqla/migrate_repo/versions/2af3291ec4c_added_replicas_history_table.py,sha256=znpYGjhFW5RNnTKk7CmmvTwAb033cwBi9XhsHXhlRRc,2256
|
|
260
|
-
rucio/db/sqla/migrate_repo/versions/2b69addda658_add_columns_for_third_party_copy_read_.py,sha256=NME44LF2YwfbkZMsu8k6RRvDQWbTsRzCm1Jf2vpghbc,1812
|
|
261
|
-
rucio/db/sqla/migrate_repo/versions/2b8e7bcb4783_add_config_table.py,sha256=r4exuXaxcX0YzfdUU9XlBtzvaQPJZmmTcNf7mXK8OcQ,2911
|
|
262
|
-
rucio/db/sqla/migrate_repo/versions/2ba5229cb54c_add_submitted_at_to_requests_table.py,sha256=RoZO44ch2-kiurq4l3eYCJiErKgWwiw3Pf1-bqQcWI0,1580
|
|
263
|
-
rucio/db/sqla/migrate_repo/versions/2cbee484dcf9_added_column_volume_to_rse_transfer_.py,sha256=qIWOPRWgwj12Q6XfiNQDQ0sQk0am2y7PqaYPVW6Mcn4,1599
|
|
264
|
-
rucio/db/sqla/migrate_repo/versions/2edee4a83846_add_source_to_requests_and_requests_.py,sha256=5d1hQPxOb5i50wdEvla0IUsIcBWLaldZ3N0IiGsl8fM,1782
|
|
265
|
-
rucio/db/sqla/migrate_repo/versions/2eef46be23d4_change_tokens_pk.py,sha256=ERowgje1Hh_VAfzZe9GLhw2IoBf39Bh4lvr3jh_UIsc,1793
|
|
266
|
-
rucio/db/sqla/migrate_repo/versions/2f648fc909f3_index_in_rule_history_on_scope_name.py,sha256=3BAlDRbIrYb3GqXG6e1Ekas_oeNm1Sw0rwfUeCmdkKU,1333
|
|
267
|
-
rucio/db/sqla/migrate_repo/versions/3082b8cef557_add_naming_convention_table_and_closed_.py,sha256=g0j-tl3s-24vEdFfyVZ96sRpyJExv9jH4jtvUrMdEiw,3277
|
|
268
|
-
rucio/db/sqla/migrate_repo/versions/30fa38b6434e_add_index_on_service_column_in_the_message_table.py,sha256=O4GhXOKkzENr-svaaRC895EFfQZ-xYPIV8mdFjyA-Pk,2044
|
|
269
|
-
rucio/db/sqla/migrate_repo/versions/3152492b110b_added_staging_area_column.py,sha256=0oxvqiIB8GR7q2ehGMEsEjtT4nSbS8Tk3wMCYSksElY,3906
|
|
270
|
-
rucio/db/sqla/migrate_repo/versions/32c7d2783f7e_create_bad_replicas_table.py,sha256=p-H6HNhE3mvhhLqAkmLCiDALpKHTVwO4ECj9EAhktTo,2563
|
|
271
|
-
rucio/db/sqla/migrate_repo/versions/3345511706b8_replicas_table_pk_definition_is_in_.py,sha256=16GmyvPHrbTcGRo0xNFK25Zbm5tG2BNYGjfIRGE5XJA,4022
|
|
272
|
-
rucio/db/sqla/migrate_repo/versions/35ef10d1e11b_change_index_on_table_requests.py,sha256=MihMs-hdVXH1UfUoNMJ1cOq4c2AvC9ntEtQ4TjHp13E,1495
|
|
273
|
-
rucio/db/sqla/migrate_repo/versions/379a19b5332d_create_rse_limits_table.py,sha256=shXWE7MrIgr4tTzZVuj_ACYuAyEjBVl1wfyVVZhJ7qA,2867
|
|
274
|
-
rucio/db/sqla/migrate_repo/versions/384b96aa0f60_created_rule_history_tables.py,sha256=46LKlQ5AUyZkvnHjHH0E-ALp-9_h0wHp4Dujw7izdJo,7553
|
|
275
|
-
rucio/db/sqla/migrate_repo/versions/3ac1660a1a72_extend_distance_table.py,sha256=JYU6A3zhtOKXSQ_3Tt4rsV0GxnNAXISUfP-QG7RfqX0,2422
|
|
276
|
-
rucio/db/sqla/migrate_repo/versions/3ad36e2268b0_create_collection_replicas_updates_table.py,sha256=hf0IKsS9CMKVAm0qn5Ew3dh9CuEWPM9yIOhZbnWeQmA,3666
|
|
277
|
-
rucio/db/sqla/migrate_repo/versions/3c9df354071b_extend_waiting_request_state.py,sha256=XasVxbQYRg0hnHQkQZHb3aQdebqv_wpjk2HtRbcG88s,2711
|
|
278
|
-
rucio/db/sqla/migrate_repo/versions/3d9813fab443_add_a_new_state_lost_in_badfilesstatus.py,sha256=CN_ND2JfIIfiyE-e-iaMz5q7VNiXZ1D24JR8w7zt0A8,1474
|
|
279
|
-
rucio/db/sqla/migrate_repo/versions/40ad39ce3160_add_transferred_at_to_requests_table.py,sha256=MrDlt9eZSyYy5DYYSVsk-YhR_rbMYAvfCpSBAxFYt_I,1586
|
|
280
|
-
rucio/db/sqla/migrate_repo/versions/4207be2fd914_add_notification_column_to_rules.py,sha256=Kc0w8WYM-R3wbsYezKzFdmpg6-Z7FxTelsNuj5sOO80,2801
|
|
281
|
-
rucio/db/sqla/migrate_repo/versions/42db2617c364_create_index_on_requests_external_id.py,sha256=MsEi_lJK0MDxJ7bNxV7gcGSWZSufXUbcDDVpwkVkRAA,1312
|
|
282
|
-
rucio/db/sqla/migrate_repo/versions/436827b13f82_added_column_activity_to_table_requests.py,sha256=ulhjwTXPtTTLCwNHKQnU2S9r4ANerVky76KNG1wSGKs,1577
|
|
283
|
-
rucio/db/sqla/migrate_repo/versions/44278720f774_update_requests_typ_sta_upd_idx_index.py,sha256=-HFsHtNv1Cz37sxw9UD2b0wK_O1ncnIx0_gYTY0tbxQ,1669
|
|
284
|
-
rucio/db/sqla/migrate_repo/versions/45378a1e76a8_create_collection_replica_table.py,sha256=GrmxJHdbZ9atANGIIq81ogvfp2WyJdY5srPSpPZAx7U,3732
|
|
285
|
-
rucio/db/sqla/migrate_repo/versions/469d262be19_removing_created_at_index.py,sha256=RUpKotZqt65HncMfslOUxe7HriFdlSj0uZKUZePhj0A,1445
|
|
286
|
-
rucio/db/sqla/migrate_repo/versions/4783c1f49cb4_create_distance_table.py,sha256=dDLCjLwc7g5fTg2N1wUkFWLRRci-6QED7KevtyXlZb0,2474
|
|
287
|
-
rucio/db/sqla/migrate_repo/versions/49a21b4d4357_create_index_on_table_tokens.py,sha256=bb2G7PmHeSzfKRYLzUXe9PvyGWPAOeIoTIggxJye2Z4,1717
|
|
288
|
-
rucio/db/sqla/migrate_repo/versions/4a2cbedda8b9_add_source_replica_expression_column_to_.py,sha256=LAcBHUau38hOhHyQdwgOnqdz021uWRUwYCt-szAzyN0,1611
|
|
289
|
-
rucio/db/sqla/migrate_repo/versions/4a7182d9578b_added_bytes_length_accessed_at_columns.py,sha256=Sx4jYk5XEsY1_VZ-EZeJsnxyoU2LmivvstatwuXLWuM,2034
|
|
290
|
-
rucio/db/sqla/migrate_repo/versions/4bab9edd01fc_create_index_on_requests_rule_id.py,sha256=FkAu6sWxPI6xKMhBb98L_hA51ZOfFliTDIpSE1sxGyY,1297
|
|
291
|
-
rucio/db/sqla/migrate_repo/versions/4c3a4acfe006_new_attr_account_table.py,sha256=TIcgDQ1p8r1G5ZtrxhKGUfeS0JfVDrzOqY5W4xE39Dc,2807
|
|
292
|
-
rucio/db/sqla/migrate_repo/versions/4cf0a2e127d4_adding_transient_metadata.py,sha256=EdfgMuDBa35jt5temWLiAc8h5L8bK-NN9qCdezIdCOA,1624
|
|
293
|
-
rucio/db/sqla/migrate_repo/versions/50280c53117c_add_qos_class_to_rse.py,sha256=fII33oOR9wiI1JltIMdHijgmnCpULrmR5J8Ew4nIcho,1567
|
|
294
|
-
rucio/db/sqla/migrate_repo/versions/52153819589c_add_rse_id_to_replicas_table.py,sha256=k8eqOs9nkNL6V_5gQwqT3W6MzRRParw3rXarMw4s8IU,1442
|
|
295
|
-
rucio/db/sqla/migrate_repo/versions/52fd9f4916fa_added_activity_to_rules.py,sha256=_zg1W_xrUa2nc3BpcB-CqzavrZSnTEcnCMqZyd8X304,1552
|
|
296
|
-
rucio/db/sqla/migrate_repo/versions/53b479c3cb0f_fix_did_meta_table_missing_updated_at_.py,sha256=BDL2NWYAjeJrHtcfwQjF0lqGptLb1GuzPcy0KQLSeFY,1742
|
|
297
|
-
rucio/db/sqla/migrate_repo/versions/5673b4b6e843_add_wfms_metadata_to_rule_tables.py,sha256=9C8iJfyHiBAHQQDXoqSewEsMiuXnikK7NPWVS4NxX0I,1855
|
|
298
|
-
rucio/db/sqla/migrate_repo/versions/575767d9f89_added_source_history_table.py,sha256=VFTwptkD8NafLmGpIic1AD7DHOmXIQNdHv-vTPm5-AQ,2387
|
|
299
|
-
rucio/db/sqla/migrate_repo/versions/58bff7008037_add_started_at_to_requests.py,sha256=vnihpf6EsRklyC13on3D7hqGL1RW1xuSUqRJhISKHjs,1727
|
|
300
|
-
rucio/db/sqla/migrate_repo/versions/58c8b78301ab_rename_callback_to_message.py,sha256=CRrlrstDpif83vVj9doJJO5wPMD_MFMdti27On4IlZ4,6151
|
|
301
|
-
rucio/db/sqla/migrate_repo/versions/5f139f77382a_added_child_rule_id_column.py,sha256=ZiV_RdjaoC8jIopgp9Kt6TMqKN-274vYL8haS3aHUog,2316
|
|
302
|
-
rucio/db/sqla/migrate_repo/versions/688ef1840840_adding_did_meta_table.py,sha256=Mftu6SBvuUdMyASq31aiVZv1nReltTxKiRgS17cxZiA,1690
|
|
303
|
-
rucio/db/sqla/migrate_repo/versions/6e572a9bfbf3_add_new_split_container_column_to_rules.py,sha256=caftM-6-GkIqpA8PZkyfkNiCUqY_W4task99YFpviDc,1995
|
|
304
|
-
rucio/db/sqla/migrate_repo/versions/70587619328_add_comment_column_for_subscriptions.py,sha256=x0djA8ZDteuXTKcvcv2MMBV5Dh0EZlFz9qSzPFQiz98,1585
|
|
305
|
-
rucio/db/sqla/migrate_repo/versions/739064d31565_remove_history_table_pks.py,sha256=lM7vKX6Zvqghpr_Q7g5IVzsFUSbTJLJWFqThhMJ4pRc,1387
|
|
306
|
-
rucio/db/sqla/migrate_repo/versions/7541902bf173_add_didsfollowed_and_followevents_table.py,sha256=j8vw0-HkaMaSRzmm7SbjLWGVVVJQnTvozXznrQPb4YQ,5073
|
|
307
|
-
rucio/db/sqla/migrate_repo/versions/7ec22226cdbf_new_replica_state_for_temporary_.py,sha256=G8iUO9o01-pHC6bwFWstqm_k6ivvmqcTGPH7qd_9b_I,3592
|
|
308
|
-
rucio/db/sqla/migrate_repo/versions/810a41685bc1_added_columns_rse_transfer_limits.py,sha256=i0ShOyYPe7tkLM5ok6XHdVpSTE6ElwDzmgZfeCeV35c,1921
|
|
309
|
-
rucio/db/sqla/migrate_repo/versions/83f991c63a93_correct_rse_expression_length.py,sha256=oiGgwR1wfxuZFf34OncMCDiLdMsSTyYduHFZ7zkkCLI,1914
|
|
310
|
-
rucio/db/sqla/migrate_repo/versions/8523998e2e76_increase_size_of_extended_attributes_.py,sha256=nVqZqKjfbi_XZ6KuUXEvSGCW4V_kYMN9D--aPOyhNAQ,1687
|
|
311
|
-
rucio/db/sqla/migrate_repo/versions/8ea9122275b1_adding_missing_function_based_indices.py,sha256=zHv6vfpkvWQD643GeW9RTBrk8mMcOxsyo9ofkrZ2hO8,2171
|
|
312
|
-
rucio/db/sqla/migrate_repo/versions/90f47792bb76_add_clob_payload_to_messages.py,sha256=w53QMz0ywNBdisxN_9iL_PNKlJa2JX080sSemsNGFBk,1741
|
|
313
|
-
rucio/db/sqla/migrate_repo/versions/914b8f02df38_new_table_for_lifetime_model_exceptions.py,sha256=BuwFPV3kAOIEUESdtJYT5jO4BmPRofmG_MoYoAtCoDs,3168
|
|
314
|
-
rucio/db/sqla/migrate_repo/versions/94a5961ddbf2_add_estimator_columns.py,sha256=BMzZXs406Q5oJ9VqPD3oFGypRCwNBEsUMSRll_4WZ7I,1775
|
|
315
|
-
rucio/db/sqla/migrate_repo/versions/9a1b149a2044_add_saml_identity_type.py,sha256=mHGfhGLsByPfawYpk-U44N2Q2O8WD0XbN-2bvxHXoxI,5062
|
|
316
|
-
rucio/db/sqla/migrate_repo/versions/9a45bc4ea66d_add_vp_table.py,sha256=ywPtVgWGbDjAMGZ4OFFO5587rYATwGcbdatIsHtyoX0,1962
|
|
317
|
-
rucio/db/sqla/migrate_repo/versions/9eb936a81eb1_true_is_true.py,sha256=Bx9DcaqLgcPDKzdfMvKkvC6gUBRG-EqjTOXjWtxqeWw,3714
|
|
318
|
-
rucio/db/sqla/migrate_repo/versions/a118956323f8_added_vo_table_and_vo_col_to_rse.py,sha256=R1tyzP1boz45ltdyKKIutmH19HI5wvIibxXh2mnWlxg,3167
|
|
319
|
-
rucio/db/sqla/migrate_repo/versions/a193a275255c_add_status_column_in_messages.py,sha256=1m_5aRO3N2MzdpaEBF91ah-qgTRdaxTkeocCFuOlgmE,1755
|
|
320
|
-
rucio/db/sqla/migrate_repo/versions/a5f6f6e928a7_1_7_0.py,sha256=2O-CN6Uj8LtPThDjPVl1R0Tei-VvvwvQO8rjmawU78A,5862
|
|
321
|
-
rucio/db/sqla/migrate_repo/versions/a616581ee47_added_columns_to_table_requests.py,sha256=WHOlGw9JgmlHUTbbByzQFTxwpNzk3b9ReJaeclgSxXw,2619
|
|
322
|
-
rucio/db/sqla/migrate_repo/versions/a6eb23955c28_state_idx_non_functional.py,sha256=hWPtPEfwZ6cHAyD6oPiusacef3EyT3u8Dcj-_tSsEjw,2219
|
|
323
|
-
rucio/db/sqla/migrate_repo/versions/a74275a1ad30_added_global_quota_table.py,sha256=0vZAnS_PlRhyM82DnBvhOvIF6p3UZ3kTyOdfvARlHEc,2223
|
|
324
|
-
rucio/db/sqla/migrate_repo/versions/a93e4e47bda_heartbeats.py,sha256=uim_ITDlsDtwv6CCftg4H00LUjzXpBjkn_EmTeQoxNs,2800
|
|
325
|
-
rucio/db/sqla/migrate_repo/versions/ae2a56fcc89_added_comment_column_to_rules.py,sha256=jFvInpdEOm-JDSIRAXdow1kGkXZ9c72PAy3luyqIIRg,1907
|
|
326
|
-
rucio/db/sqla/migrate_repo/versions/b4293a99f344_added_column_identity_to_table_tokens.py,sha256=cSth2pjLEy76o0g9QGsahzgmZoEm-jJkekxymQTlFf0,1572
|
|
327
|
-
rucio/db/sqla/migrate_repo/versions/b7d287de34fd_removal_of_replicastate_source.py,sha256=uo6l1xhgaJtdXZjj5bywlnwRdTtOh05J3o1zJPRw1Jo,5433
|
|
328
|
-
rucio/db/sqla/migrate_repo/versions/b818052fa670_add_index_to_quarantined_replicas.py,sha256=f2OZGXj87cDGtSUAN5qbdu0L8ibkoUskv_kRy9KA_-I,1375
|
|
329
|
-
rucio/db/sqla/migrate_repo/versions/b8caac94d7f0_add_comments_column_for_subscriptions_.py,sha256=MK214Rfs8du9b6YsWUPlqFe3DEeV8KxV_cbOX6K6NtA,1611
|
|
330
|
-
rucio/db/sqla/migrate_repo/versions/b96a1c7e1cc4_new_bad_pfns_table_and_bad_replicas_.py,sha256=t95nyU6DdlegB3sj2QfdPzQortiiT2s-3lRU75WSUnk,7442
|
|
331
|
-
rucio/db/sqla/migrate_repo/versions/bb695f45c04_extend_request_state.py,sha256=lnPZLaEMNqXOnYIKi-8HK9oHtCLaTi4PswNOQmAvVkI,3754
|
|
332
|
-
rucio/db/sqla/migrate_repo/versions/bc68e9946deb_add_staging_timestamps_to_request.py,sha256=aWCCPxoZo83M5xxuPkSGKZhYzZVRYky0zB3D-m88MBk,2117
|
|
333
|
-
rucio/db/sqla/migrate_repo/versions/bf3baa1c1474_correct_pk_and_idx_for_history_tables.py,sha256=CbKvHGd4QJ2ifZiF4UbxsgC9bm_3_1VhBsirYy87MOQ,2984
|
|
334
|
-
rucio/db/sqla/migrate_repo/versions/c0937668555f_add_qos_policy_map_table.py,sha256=JOp84xXdBlszEBelKa9OhjtnCgCTCXrj1ivzSPMohV8,2145
|
|
335
|
-
rucio/db/sqla/migrate_repo/versions/c129ccdb2d5_add_lumiblocknr_to_dids.py,sha256=ku2FS5ljDJ9Red0pwWaRtMxxQKzKOcCPy7oXqgPAKug,1556
|
|
336
|
-
rucio/db/sqla/migrate_repo/versions/ccdbcd48206e_add_did_type_column_index_on_did_meta_.py,sha256=cM5teQJ1rKoX11wIditVBri9_nbFrd6yeZBfGKeB0Bc,2858
|
|
337
|
-
rucio/db/sqla/migrate_repo/versions/cebad904c4dd_new_payload_column_for_heartbeats.py,sha256=6RCdf3bgSz8CUpOtFW8ORkxwtYWJbjJsR4R55juQsLw,1771
|
|
338
|
-
rucio/db/sqla/migrate_repo/versions/d1189a09c6e0_oauth2_0_and_jwt_feature_support_adding_.py,sha256=7G2dK_zo1q65512CC7lUR46m9ARZ5IsCH2XCzoEm6M0,9635
|
|
339
|
-
rucio/db/sqla/migrate_repo/versions/d23453595260_extend_request_state_for_preparer.py,sha256=C3U0II9WwVRqetnIF1WwAEGEmuoai_GkHkXofVcnHns,4791
|
|
340
|
-
rucio/db/sqla/migrate_repo/versions/d6dceb1de2d_added_purge_column_to_rules.py,sha256=Atwc0cwtmlbgCJrmGShXroavh49LtDQLX_6GnzbC64A,1762
|
|
341
|
-
rucio/db/sqla/migrate_repo/versions/d6e2c3b2cf26_remove_third_party_copy_column_from_rse.py,sha256=rW0h9rrMKVN460IWcFhXjhg85h-wDEIYY3Zil02Lddw,1619
|
|
342
|
-
rucio/db/sqla/migrate_repo/versions/d91002c5841_new_account_limits_table.py,sha256=XqLLddFLZ0QHm4fv_v1Od40KBsgImxIJlH3ZW3Tm-1I,5313
|
|
343
|
-
rucio/db/sqla/migrate_repo/versions/e138c364ebd0_extending_columns_for_filter_and_.py,sha256=6oz7888IB88AZ_CBObk1xozeVs1t0M57RQq7f-fbD4w,2455
|
|
344
|
-
rucio/db/sqla/migrate_repo/versions/e59300c8b179_support_for_archive.py,sha256=GJ7Qx8pdKQuNmjZz6RQ8sI0c1BJEDD3oiJAt3S9uRo4,4915
|
|
345
|
-
rucio/db/sqla/migrate_repo/versions/f1b14a8c2ac1_postgres_use_check_constraints.py,sha256=nRB7PPmFnpHR-6X37h6jAoCmuVm4_SLkppv_XKYSWk0,921
|
|
346
|
-
rucio/db/sqla/migrate_repo/versions/f41ffe206f37_oracle_global_temporary_tables.py,sha256=LQSANYcwxY-tPXcwfYyn7V91t8XgcqkqRCzk5RKK8Bw,2971
|
|
347
|
-
rucio/db/sqla/migrate_repo/versions/f85a2962b021_adding_transfertool_column_to_requests_.py,sha256=9ITYLqXKF87oK_AJtiNTqjCYmlGjTo0qnJ99STNdorY,1974
|
|
348
|
-
rucio/db/sqla/migrate_repo/versions/fa7a7d78b602_increase_refresh_token_size.py,sha256=3yn_3RwABUgw6byqGYRZpC1BEAytYsUN-cZQtv6rQBE,1642
|
|
349
|
-
rucio/db/sqla/migrate_repo/versions/fb28a95fe288_add_replicas_rse_id_tombstone_idx.py,sha256=ViKQZ2kYz739JYRByQPDiBYAsd2hXGUiVuyuUyGB-rs,1134
|
|
350
|
-
rucio/db/sqla/migrate_repo/versions/fe1a65b176c9_set_third_party_copy_read_and_write_.py,sha256=tiOuuLHnFrUQdFRFlF7khgpQPMFhmk3XP_98hO12LIE,1920
|
|
351
|
-
rucio/db/sqla/migrate_repo/versions/fe8ea2fa9788_added_third_party_copy_column_to_rse_.py,sha256=4lEcAOicpqZ5coIEAGMqJQMcbdydSB9VmhkVSb1l9pQ,1625
|
|
352
|
-
rucio/rse/__init__.py,sha256=yLUvu0yYEAs2UrGaPWlmbi-mGBDjjtHkMffWSEbh8BE,3327
|
|
353
|
-
rucio/rse/rsemanager.py,sha256=e9tVcdXaIHbAtmgp93OebIAClcJlcebTqBDGba-hxY0,37286
|
|
354
|
-
rucio/rse/protocols/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
355
|
-
rucio/rse/protocols/cache.py,sha256=kv1FZD15HnZ4xt9vi11GXRxg6NtD1i2o4ygJYWdQOwo,4627
|
|
356
|
-
rucio/rse/protocols/dummy.py,sha256=uGudzQkf2ScgNf8YwrZXng7EmPKnD6AQnkqMGFEIFpo,4249
|
|
357
|
-
rucio/rse/protocols/gfal.py,sha256=DEtP9YXHnu1S2IT-cocM_vAuHjyhfWYUoUZvjJd2nac,29035
|
|
358
|
-
rucio/rse/protocols/globus.py,sha256=goAOPx1o7ccZsDWcLYcdsFeKYYiGEkGJTSpEfagIV3s,9704
|
|
359
|
-
rucio/rse/protocols/gsiftp.py,sha256=6Wup-ETBONpQRBG7RGWYZrFWh_9f0rWCrDlJ6lShSKA,3433
|
|
360
|
-
rucio/rse/protocols/http_cache.py,sha256=zJwfBOedDAW_psqtZnhyrcj74HT8NlzC2tEwxNPqbLg,2999
|
|
361
|
-
rucio/rse/protocols/mock.py,sha256=UAfXrdM5FivSe4UFkfes3pr8RZjFjaV5fyiW6exU_z0,4519
|
|
362
|
-
rucio/rse/protocols/ngarc.py,sha256=2JFTAp4lptvCR36y9ErYGkUlc5jLWkgibCyYeU5sGnA,7248
|
|
363
|
-
rucio/rse/protocols/posix.py,sha256=5YthS746goCZ112AFcp6wWuu6wrOpgQfI0G9DHDHEZA,10418
|
|
364
|
-
rucio/rse/protocols/protocol.py,sha256=se7_SqVuYDek4RfKjr7MZdhF4Im6HKPjKgjqiG3JWjk,22818
|
|
365
|
-
rucio/rse/protocols/rclone.py,sha256=e93CN9RflX6hEAi6Og_eP9kML5mtY9rTJHr79fsYwYU,15276
|
|
366
|
-
rucio/rse/protocols/rfio.py,sha256=Gnvwtn7nwyI6-VVeAWtrFSer5mN4ACMiJ7hNU8i8CDA,5523
|
|
367
|
-
rucio/rse/protocols/srm.py,sha256=ttp5TsYjIb1mD2iZkwaN5NwkH6yQideVr3hXmOJmIA4,14671
|
|
368
|
-
rucio/rse/protocols/ssh.py,sha256=bibRq8A6w0CCQ-XdJJz28v5ALXPXux9zHU2vv9pjaio,17487
|
|
369
|
-
rucio/rse/protocols/storm.py,sha256=-qcQU9w2cwYIJiP6xkMGuUsye1rnssmyZONIjqgTwtw,8151
|
|
370
|
-
rucio/rse/protocols/webdav.py,sha256=ID9nJo88p2ng4M4OGY77ZKgG2x63bME2jYLUeI4x23E,22206
|
|
371
|
-
rucio/rse/protocols/xrootd.py,sha256=PPothpJhO2d7N_8vjFKrT6pR3D_kYDT_VjOxlam5vRQ,12489
|
|
372
|
-
rucio/tests/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
373
|
-
rucio/tests/common.py,sha256=jyFGJvo786b8xT6fIZOze0Ie7U3bSYmqvgwBb6-pHjg,7831
|
|
374
|
-
rucio/tests/common_server.py,sha256=GAdPMhEypJ_VXlrUvWjnxXbxyeAQnr9UEYolejn-PaY,5068
|
|
375
|
-
rucio/transfertool/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
376
|
-
rucio/transfertool/fts3.py,sha256=_cow010I0Hrj2uYzg1dxIPGnphLqaoPeN8r3LZ8g_wE,70656
|
|
377
|
-
rucio/transfertool/globus.py,sha256=a3g1KDbtV2uk_utohNYlDLDIdlFQSRhAxnw7onXcqq4,7668
|
|
378
|
-
rucio/transfertool/globus_library.py,sha256=zhUW1SVki2bp4G87JQa5G-8SIwFt3WC6PfOLkW9PtFc,8435
|
|
379
|
-
rucio/transfertool/mock.py,sha256=U3Z-x499sVYKtA3jTc4GkW-vDqn-AWBfa7gpkA5FNFA,2815
|
|
380
|
-
rucio/transfertool/transfertool.py,sha256=XiYN2qAs1Ume-p-hBHENzlR2YmOjYo71wC0xloDM0Kg,7518
|
|
381
|
-
rucio/web/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
382
|
-
rucio/web/rest/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
383
|
-
rucio/web/rest/main.py,sha256=uzt3JS1k7E4Mllh1_nPybtVS_ePWUulrJYuzzKDLUd8,749
|
|
384
|
-
rucio/web/rest/metrics.py,sha256=-4QYtoDyBwHBlKqGGXYmLLQWL9cVA77vc3-OmGs5E9w,1040
|
|
385
|
-
rucio/web/rest/flaskapi/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
386
|
-
rucio/web/rest/flaskapi/authenticated_bp.py,sha256=9e8eVbcMyY7bsSKBzSZ5PouUDU7m3WjPcJge7A05p2w,1023
|
|
387
|
-
rucio/web/rest/flaskapi/v1/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
|
|
388
|
-
rucio/web/rest/flaskapi/v1/accountlimits.py,sha256=77dstH8B9sIkXACaSQ3BdT3aDjlawS550zW4SalKih4,7826
|
|
389
|
-
rucio/web/rest/flaskapi/v1/accounts.py,sha256=eVXvnxC-KDYK0b-iouhSPJAIXpghvn3xM3HGZAvY2Hk,37031
|
|
390
|
-
rucio/web/rest/flaskapi/v1/archives.py,sha256=tpaEEKnCuPsmSMFC_Bbyo5k4dwGcjEwBvuh--L7YclA,3374
|
|
391
|
-
rucio/web/rest/flaskapi/v1/auth.py,sha256=5tX7S_feys831cwW-8-hHcqNxZIjJjX_fCDPJgmut1A,61286
|
|
392
|
-
rucio/web/rest/flaskapi/v1/common.py,sha256=lhhTCDcMFFm0c7Y0CfH0DGw9dyZahMTKdXq8Ck-THKM,14540
|
|
393
|
-
rucio/web/rest/flaskapi/v1/config.py,sha256=TuD1-ZD4ZuKfHpm49hTj7sia_IoAWAPZbDsOyNi0gP0,10156
|
|
394
|
-
rucio/web/rest/flaskapi/v1/credentials.py,sha256=vvRo52oImYBsbAP_VyoY2Gwqe4aCxm1IBkpct1Yyivk,7747
|
|
395
|
-
rucio/web/rest/flaskapi/v1/dids.py,sha256=pyE3lBoGnSJwbgnEaAeiO-1FLSoCsDAFDbFdV5XRgKc,77607
|
|
396
|
-
rucio/web/rest/flaskapi/v1/dirac.py,sha256=SjKi9ABrIFkyeKj0y_90SgXMMlAdS4RsmVbZ82izVMk,4483
|
|
397
|
-
rucio/web/rest/flaskapi/v1/export.py,sha256=67FrFUgG8zN2fJ2n6AQnOscWYLBSxypXHZybyg7XuMg,2686
|
|
398
|
-
rucio/web/rest/flaskapi/v1/heartbeats.py,sha256=spbJPkUyHtCeoMhHAmf4zMkDFL82poO9UsvUR_bFYI4,4650
|
|
399
|
-
rucio/web/rest/flaskapi/v1/identities.py,sha256=pAlvQ_FpJf0k-kkpL6jBWjPdXiDcaIFVFTsWKdaIcDY,7924
|
|
400
|
-
rucio/web/rest/flaskapi/v1/import.py,sha256=Dll05wm9vx2f6Ibd4Tba2n-AgKWOOoziri2roJ4NIEw,5281
|
|
401
|
-
rucio/web/rest/flaskapi/v1/lifetime_exceptions.py,sha256=Gxu_IxvIh-Frqi8sewlocHl8I9QzdxSoUg2peTYzhbw,12043
|
|
402
|
-
rucio/web/rest/flaskapi/v1/locks.py,sha256=5XfLvXNq4wpfZILgESimGXHVSWQe6lIoJbOhUG9IYSw,13020
|
|
403
|
-
rucio/web/rest/flaskapi/v1/main.py,sha256=nVzmhQCcw0yLupTmGWfG3NTO5fZsj5stzCdxPvlZNVQ,2467
|
|
404
|
-
rucio/web/rest/flaskapi/v1/meta.py,sha256=neKYjlI6FDBQPbOC_yjzb3Ue4uDjfTW8kBI19wiIBXc,7182
|
|
405
|
-
rucio/web/rest/flaskapi/v1/metrics.py,sha256=R6CgEcH5qD0vVPXtdQLwCUE5lZUrPaJFN-oV7QN8rQU,1274
|
|
406
|
-
rucio/web/rest/flaskapi/v1/nongrid_traces.py,sha256=-MmKhjzpKaRhQJiIUdxUnODU-k1TbtF4TzwyuG3EHzg,3154
|
|
407
|
-
rucio/web/rest/flaskapi/v1/ping.py,sha256=NKO3o0FEGW0WlcrXGsmmSRhhv0ZtvDARrdevuOEZcd0,3084
|
|
408
|
-
rucio/web/rest/flaskapi/v1/redirect.py,sha256=ov1EFDBbiytAL0ZovXob1vzJw9BIo3unXQsETV4WWkQ,13360
|
|
409
|
-
rucio/web/rest/flaskapi/v1/replicas.py,sha256=ZVPU5qI6xfo6UmcuHC0qZmVPMnEnt57jtWo5__JEBPc,72691
|
|
410
|
-
rucio/web/rest/flaskapi/v1/requests.py,sha256=LhTv6BphLl53kVyHgc3lSk0GyrrW0ZDXhyZDRwbudsY,35134
|
|
411
|
-
rucio/web/rest/flaskapi/v1/rses.py,sha256=-1buwic-D3m-O2bldUCmsFW4lEKfVV83SbfVZn62_HY,81835
|
|
412
|
-
rucio/web/rest/flaskapi/v1/rules.py,sha256=HhnXTbANpW0MEOO8uBWEp3u3YgG6EckAv9kDYSpHPAo,31808
|
|
413
|
-
rucio/web/rest/flaskapi/v1/scopes.py,sha256=JWtw9dJo7k2iaLw0wvUgWr8z-GHgl8aPI-ibYtROlLM,5098
|
|
414
|
-
rucio/web/rest/flaskapi/v1/subscriptions.py,sha256=cdkpf3Q-8ox2W6dfNE3NqDF_sFi7EanS-LfgXrL8Uyc,24180
|
|
415
|
-
rucio/web/rest/flaskapi/v1/tmp_dids.py,sha256=sTdrQaWtyQBkmVMciibf1NIB3bGEQ2Jt7-WlnDDcXlQ,4087
|
|
416
|
-
rucio/web/rest/flaskapi/v1/traces.py,sha256=QTdmlym9Q8Se-J40SLyeALbL7WrtSJdpzl0eaIIUKiQ,3236
|
|
417
|
-
rucio/web/rest/flaskapi/v1/vos.py,sha256=Mrou7U7KETDzwOiK0ydOuvOJYaZnat_YYpIDl3oz_Fo,9184
|
|
418
|
-
rucio/web/rest/flaskapi/v1/templates/auth_crash.html,sha256=enhyVliQHlblgCEHvBzAlLxymFySlc42tk87vfWdBo0,2254
|
|
419
|
-
rucio/web/rest/flaskapi/v1/templates/auth_granted.html,sha256=SDsrTCQhwklLu3mDtSTUATnK16QG1T-eWDTDjmv8bn4,2139
|
|
420
|
-
rucio-32.8.6.data/data/rucio/requirements.txt,sha256=FXk7izEskAPlNWZWNCqAKhAp7JSTfLpXzbxudpo7koc,4837
|
|
421
|
-
rucio-32.8.6.data/data/rucio/etc/alembic.ini.template,sha256=ERvYSCWTpMlhcGdt3XsQNAtxl_JuYF4hwRrpUCC0I7g,1764
|
|
422
|
-
rucio-32.8.6.data/data/rucio/etc/alembic_offline.ini.template,sha256=PwoOSvkt2B3YTN08Cq-JEUshQ9_-PR6ntNfmpsYSNgc,1922
|
|
423
|
-
rucio-32.8.6.data/data/rucio/etc/globus-config.yml.template,sha256=ADOplXW10bO5KZVYRavwKgNaDR0VmdJ3gVbINeqoSIA,96
|
|
424
|
-
rucio-32.8.6.data/data/rucio/etc/ldap.cfg.template,sha256=eQZ55PAbIYaNmnltPFYyXCxz-0JL9-GPEotJa3muZNk,807
|
|
425
|
-
rucio-32.8.6.data/data/rucio/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
|
|
426
|
-
rucio-32.8.6.data/data/rucio/etc/rucio.cfg.atlas.client.template,sha256=O24QKo-0OX4Clj7Bp2Bv9W-b0NtLkyYg3jNNpz_alr0,1311
|
|
427
|
-
rucio-32.8.6.data/data/rucio/etc/rucio.cfg.template,sha256=z1s8B-_C-gKsPM8ZtCOZDTKLd0Emj8IYgLBz4B9dCw4,8534
|
|
428
|
-
rucio-32.8.6.data/data/rucio/etc/rucio_multi_vo.cfg.template,sha256=bO4e7r5o_d98cc2mff4Lju7KEMtUZd-eep0L1Dlxwvg,7477
|
|
429
|
-
rucio-32.8.6.data/data/rucio/etc/mail_templates/rule_approval_request.tmpl,sha256=MTrB-IQEFE6TJnkwXjLxlUIc4afHmmrdQDC1S5og_dM,1210
|
|
430
|
-
rucio-32.8.6.data/data/rucio/etc/mail_templates/rule_approved_admin.tmpl,sha256=HxYNm7EKG9cMNkwUNPgZUC7o0Q9-DTINh1JtGtHOYUg,105
|
|
431
|
-
rucio-32.8.6.data/data/rucio/etc/mail_templates/rule_approved_user.tmpl,sha256=R4rssZ2hE8wcYPmAyc-UDpO5SPhMLZGNuYz6pvLjPVc,499
|
|
432
|
-
rucio-32.8.6.data/data/rucio/etc/mail_templates/rule_denied_admin.tmpl,sha256=feXJ3pZynlESBuPoe_y8amB84UQnLaP6SHtRk3cn7ZA,120
|
|
433
|
-
rucio-32.8.6.data/data/rucio/etc/mail_templates/rule_denied_user.tmpl,sha256=O054th_sVqZTFUeC3Gg_Qe8CrXQb-bxJhMaO48VMzzU,493
|
|
434
|
-
rucio-32.8.6.data/data/rucio/etc/mail_templates/rule_ok_notification.tmpl,sha256=EiT0KucfIKYnIN5XO9XawzZAJSVRYlza5sn8VloyBy4,546
|
|
435
|
-
rucio-32.8.6.data/data/rucio/tools/bootstrap.py,sha256=xjr9I9n47RFlIEglUqwUxTitwajVZ0dg8xrh7hhzu2s,1284
|
|
436
|
-
rucio-32.8.6.data/data/rucio/tools/merge_rucio_configs.py,sha256=B0JElUmPq134G8XcQTdOwuMXcPKmH75_6FbEANHiMUU,6189
|
|
437
|
-
rucio-32.8.6.data/data/rucio/tools/reset_database.py,sha256=3ypbSHBHAKguwD1bfVTMTrSwgoVDo7Sh3KIG9M_zOrY,1374
|
|
438
|
-
rucio-32.8.6.data/scripts/rucio,sha256=rF0ktQB8HN0uI_9Sb8yVLLWYWwpX-sWquGyZ67gUwOA,128842
|
|
439
|
-
rucio-32.8.6.data/scripts/rucio-abacus-account,sha256=a6L4ClyAsS1vNEvqy1lYX9_nZMwcvyhZEwIT-RZkc-I,2830
|
|
440
|
-
rucio-32.8.6.data/scripts/rucio-abacus-collection-replica,sha256=x3eQEFhT-rRhnKqA3Xcdm2k5grDCnXo3v_uA0HXd82A,1833
|
|
441
|
-
rucio-32.8.6.data/scripts/rucio-abacus-rse,sha256=9sCxLlwxfo1sW32_IpzWf7Ro1hB01AYxOrovEuVSGfQ,2577
|
|
442
|
-
rucio-32.8.6.data/scripts/rucio-admin,sha256=q7Dt6xfthr77GFRfEJTpzHlt3kcvDrnYEMCi3z2qTww,133717
|
|
443
|
-
rucio-32.8.6.data/scripts/rucio-atropos,sha256=PV2KmIKGFXDXZMwUaIqHYj0H-W0NAHxfCKED_OxrtgM,3195
|
|
444
|
-
rucio-32.8.6.data/scripts/rucio-auditor,sha256=uKFsYDjA6Ye6lpMI79aYx-Q0_jX5pVQF5CSYfzruxIc,5859
|
|
445
|
-
rucio-32.8.6.data/scripts/rucio-automatix,sha256=LvL1tBml8I4CNLlhD69l8AbRk2Nego-ZqDXyOgQ16Kw,2018
|
|
446
|
-
rucio-32.8.6.data/scripts/rucio-bb8,sha256=0dZIllVhNyPZJlaeu-zEYaMDeesCuaW51Vm5kaMxEj8,3113
|
|
447
|
-
rucio-32.8.6.data/scripts/rucio-c3po,sha256=2QWYWSOHZMsRMsW6NVxt6zlM9A_9dufA-1V5zR9R1pE,6110
|
|
448
|
-
rucio-32.8.6.data/scripts/rucio-cache-client,sha256=PJZ5ubuU5Nuy4xHB6kDXMxKMZ2k9l1r4FlWg5IicKww,5073
|
|
449
|
-
rucio-32.8.6.data/scripts/rucio-cache-consumer,sha256=Jp9RA4Z2pwZfZGSuXt9JsKvYVAYAYaDJJygLsuKOOMc,1372
|
|
450
|
-
rucio-32.8.6.data/scripts/rucio-conveyor-finisher,sha256=7NSvyDSiOSqY8LgF7xr6kumOU3aNGZrhBulWx0Ocn-o,2356
|
|
451
|
-
rucio-32.8.6.data/scripts/rucio-conveyor-poller,sha256=fyHux6Y2vBpFbNyjPFiWnxh55xci_DSbz0TYXv-BCd8,2849
|
|
452
|
-
rucio-32.8.6.data/scripts/rucio-conveyor-preparer,sha256=oJqAqTB9pEMH67wDt9zAK1-2Mjam7ajrKsAMVmb_UxQ,1770
|
|
453
|
-
rucio-32.8.6.data/scripts/rucio-conveyor-receiver,sha256=jvdUbNZPCcxH2p7k8u4QlZRYKcSBx-marvYtlfSF3O0,1692
|
|
454
|
-
rucio-32.8.6.data/scripts/rucio-conveyor-stager,sha256=nF_Mlz8q7ay3vKWlpHAk74dw-KQSpdQeguKPtT7tLiI,3395
|
|
455
|
-
rucio-32.8.6.data/scripts/rucio-conveyor-submitter,sha256=EXi3Q2SC1A5zheCmNSbll0LcPhTUrD6sR2JjvCPMRtY,6760
|
|
456
|
-
rucio-32.8.6.data/scripts/rucio-conveyor-throttler,sha256=WBWmeO8ZronFCfdvPAvvTcJfGshYg0urf8OqCTHKP4k,3869
|
|
457
|
-
rucio-32.8.6.data/scripts/rucio-dark-reaper,sha256=RJ3UU8h4yo0fpNWMk7Vsl6qlF3ZbtMB96axKhf8SoEs,2556
|
|
458
|
-
rucio-32.8.6.data/scripts/rucio-dumper,sha256=Pw_jumJW2OGlnsL87P7ByqDcqc-hQ4SzvpZIcNUo8yc,6479
|
|
459
|
-
rucio-32.8.6.data/scripts/rucio-follower,sha256=8pUGNa23HqpTCwRcjJ5ku_BvioAwPu9xqXEWoSuF-Zc,1424
|
|
460
|
-
rucio-32.8.6.data/scripts/rucio-hermes,sha256=IGmEMIt-PolUTtoHU5LMFccVBF94p9yM-u8rGoEx3V0,1997
|
|
461
|
-
rucio-32.8.6.data/scripts/rucio-judge-cleaner,sha256=I-8LXnjvAVZUAvBYLyDjk6j4dpKcbB6p2IaZzgsUNyQ,4659
|
|
462
|
-
rucio-32.8.6.data/scripts/rucio-judge-evaluator,sha256=g95v3efQzGVbbfsWU6TF0HrgKwIikqWZMn0x5TQWB0I,7480
|
|
463
|
-
rucio-32.8.6.data/scripts/rucio-judge-injector,sha256=inPMcsLpAWT3cfMGG3DuCDK1EghRHQB14WqgyJAQWGA,1681
|
|
464
|
-
rucio-32.8.6.data/scripts/rucio-judge-repairer,sha256=3uznu3Z-dOJgRDBVHWt6Va69PjcXSAY8kGQR5mxXajM,1685
|
|
465
|
-
rucio-32.8.6.data/scripts/rucio-kronos,sha256=M8d5kS3kNucCiquSrYfo20mANdTg1p5ySsmkMIRbzN0,1792
|
|
466
|
-
rucio-32.8.6.data/scripts/rucio-light-reaper,sha256=n-hz_lk5vSA2fvmVCIboGp2dYe02FvmviFXc4uy7VTM,2496
|
|
467
|
-
rucio-32.8.6.data/scripts/rucio-minos,sha256=E2KKfAjuzoH1tBRdnmPZUAGGwOJ8DqgK-EU7LphDn4s,2270
|
|
468
|
-
rucio-32.8.6.data/scripts/rucio-minos-temporary-expiration,sha256=jPCf9hAXKf6bjU-zcW1ld8C1jsGZxSYU4Pdighw_lAI,2007
|
|
469
|
-
rucio-32.8.6.data/scripts/rucio-necromancer,sha256=8AlqYSnNoojtQQ99DopNuL5fCavX99JPVXSFOdIcyTk,5635
|
|
470
|
-
rucio-32.8.6.data/scripts/rucio-oauth-manager,sha256=k-GJ97uLFeQ_Ln_bW5cKjEM_Cw3asENpLWTbBLXdYmQ,2798
|
|
471
|
-
rucio-32.8.6.data/scripts/rucio-reaper,sha256=p7I9Aq-WjWFW57rfZUhriR9BNgCEqJ7_BnbEcqPDouM,4080
|
|
472
|
-
rucio-32.8.6.data/scripts/rucio-replica-recoverer,sha256=VT6DywevinpyApRKYGOn-3drfSQGHyPfdWhOnJgwoDk,19001
|
|
473
|
-
rucio-32.8.6.data/scripts/rucio-storage-consistency-actions,sha256=pdN75kGxy9OgMvPTcGrOiSk9fisc8aNVqQsW8sNuNY0,3930
|
|
474
|
-
rucio-32.8.6.data/scripts/rucio-transmogrifier,sha256=Yp2qdkaiWVOgzU5BFEiGOPHquoXdV_enjgkOWYTACrE,3374
|
|
475
|
-
rucio-32.8.6.data/scripts/rucio-undertaker,sha256=79aosMmW7NOPWEczIs6O0ODUBJhfcBQ3-DDVJ3zuWW8,2730
|
|
476
|
-
rucio-32.8.6.dist-info/licenses/AUTHORS.rst,sha256=jQRZwvXp-5rhnfCyoeeNtd2uc3HqO2nvWg1zbupVkHM,4428
|
|
477
|
-
rucio-32.8.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
478
|
-
rucio-32.8.6.dist-info/METADATA,sha256=hZisIB1iytwuWud9yJeKXhtxQPtUgnGKScfnp3AiLXg,3000
|
|
479
|
-
rucio-32.8.6.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
480
|
-
rucio-32.8.6.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
|
|
481
|
-
rucio-32.8.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/mail_templates/rule_approval_request.tmpl
RENAMED
|
File without changes
|
{rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/mail_templates/rule_approved_admin.tmpl
RENAMED
|
File without changes
|
{rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/mail_templates/rule_approved_user.tmpl
RENAMED
|
File without changes
|
{rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/mail_templates/rule_denied_admin.tmpl
RENAMED
|
File without changes
|
|
File without changes
|
{rucio-32.8.6.data → rucio-35.8.0.data}/data/rucio/etc/mail_templates/rule_ok_notification.tmpl
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|