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
|
@@ -0,0 +1,493 @@
|
|
|
1
|
+
rucio/__init__.py,sha256=Y7cPPlHVQPFyN8bSPFC0W3WViEdONr5g_qwBub5rufE,660
|
|
2
|
+
rucio/alembicrevision.py,sha256=cvH9DsDzl7pCXmg1g_sfQ5rDJttSk8ULj0ojSdrbFzg,690
|
|
3
|
+
rucio/vcsversion.py,sha256=zzrA-6E4IBjgM3BSyQvFv8WjBTgHTNsyoVcsVuBOUsA,248
|
|
4
|
+
rucio/version.py,sha256=k9Jc0DNwCHLS1rwtNo3qOJX0WFkL-kexdtBCKFabQ4A,1325
|
|
5
|
+
rucio/client/__init__.py,sha256=0-jkSlrJf-eqbN4swA5a07eaWd6_6JXPQPLXMs4A3iI,660
|
|
6
|
+
rucio/client/accountclient.py,sha256=o8qUg-NZc_PwLk_lMevaBEdM0LdvaJ4_qGmNqgd2dkI,17370
|
|
7
|
+
rucio/client/accountlimitclient.py,sha256=RcA9ZjUz3uhpYlBROi9j97_0Fxd9TlmDaWv_3I14s_g,6479
|
|
8
|
+
rucio/client/baseclient.py,sha256=stDjxUGdctu8GvTZu-I2cNIvNRMawvFYCb5KjwUGhBc,49233
|
|
9
|
+
rucio/client/client.py,sha256=LtvhwdXEBvBmQUbkZP7iwun4Ttd-Qnv2VPzj-PNY8L4,3079
|
|
10
|
+
rucio/client/configclient.py,sha256=sCnzWOnGSYWktYud-OUnc8qVaDMiSq9I7N4uuqcTz0Y,4685
|
|
11
|
+
rucio/client/credentialclient.py,sha256=MCnuL966HPJwgxNEnk597SO7xwPEhnAIdEOeH75SOUU,2101
|
|
12
|
+
rucio/client/didclient.py,sha256=80caRhYLAObPZR7o7FvlaJil4su0snZFmv53Un3ZU5A,32588
|
|
13
|
+
rucio/client/diracclient.py,sha256=40XTub2kwdV4LMFOcJkly-y_622wkGlR6vefTvbULRk,2397
|
|
14
|
+
rucio/client/downloadclient.py,sha256=oFoz_P4IMmHLq1z0eBGpxfn-wGDlNQ4hs02gEfJoQWc,89417
|
|
15
|
+
rucio/client/exportclient.py,sha256=DJFJkBPYUmLTgHv6B5DAElIMhkpPl0Sz6OpTNM7WA50,1625
|
|
16
|
+
rucio/client/fileclient.py,sha256=NICwXZdIKIySYMIiiqz9nR8sQTiLjcWdk0RzAQaOD0U,1667
|
|
17
|
+
rucio/client/importclient.py,sha256=YMFZH79svGbl-riRSx4jeNGq7TVPiT57A_rcVT8qAGk,1516
|
|
18
|
+
rucio/client/lifetimeclient.py,sha256=JHeuOE81Nj7N_iwqDfpJzZwat6nMgSA_jNUEqaqzEU4,3322
|
|
19
|
+
rucio/client/lockclient.py,sha256=Fc-BVQV_nAHM8YmxN1UFqHutEl-E8uxnSlsjH7Uxjj4,4276
|
|
20
|
+
rucio/client/metaconventionsclient.py,sha256=1Wwh3y45zhr9X05MYGq5Gph85vIUKvWDJjRYvQpCSLw,5195
|
|
21
|
+
rucio/client/pingclient.py,sha256=rwb02jpKJnEioZ-lQRf04Drp_sRtXC36WsubNKtEvpg,1390
|
|
22
|
+
rucio/client/replicaclient.py,sha256=XQzwCVqvdAT-BaNW5o7KrF_7UGzInxC174RkqV6GWC8,19518
|
|
23
|
+
rucio/client/requestclient.py,sha256=L4meNVrb9jOuQjhALtBMgW0HKioMGfYlph4zEdjpreM,4615
|
|
24
|
+
rucio/client/rseclient.py,sha256=71iCLmgyUw3B5TMca0J8Gg8SW4hnPTcgANXWhpccJ8E,29695
|
|
25
|
+
rucio/client/ruleclient.py,sha256=lppOYILWLOPBIcq8Qv-8lp9iTVjLGUMYFto3PYrGwYY,13137
|
|
26
|
+
rucio/client/scopeclient.py,sha256=CfJyM86I8BKfXLnbUOD_KjxuqMD5B0I8AQLiuNKTjag,3238
|
|
27
|
+
rucio/client/subscriptionclient.py,sha256=GgSFlube82Xv87GQ58ouWthjxsbLalWcXQywrNmh_M4,8207
|
|
28
|
+
rucio/client/touchclient.py,sha256=i_cvIAbwH9MLF2hE1o_I5w2M9jACykEFGdyypHmyBlA,2759
|
|
29
|
+
rucio/client/uploadclient.py,sha256=1VqI-0Rzmr_gGgs030DNGuxxy2NGwxDCrVL8yo3mnss,49564
|
|
30
|
+
rucio/common/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
31
|
+
rucio/common/cache.py,sha256=cnCHNz3VOYLmKbg1RkG-n_rqb-VnuRa_b7y3aXSkqNI,2301
|
|
32
|
+
rucio/common/config.py,sha256=mgHqLhso6bXqLVrkW5OwQp-WX3Pyc4Wt3Ir5CrL8dGU,24764
|
|
33
|
+
rucio/common/constants.py,sha256=RWRl3bYGV9PJYOkxCxwOLRmW2LzLmUs2oaw5v0uJ3JI,5997
|
|
34
|
+
rucio/common/constraints.py,sha256=MrdiAwKyoaZGfspUWX_53XS2790nXMSMg1JYmTO_ciQ,726
|
|
35
|
+
rucio/common/didtype.py,sha256=t08FaxLXx4G3FqjIZQp4zhZt7rPugW0qApNrZImXxes,6545
|
|
36
|
+
rucio/common/exception.py,sha256=OUPJB-9GtWlFlSvm7Z8YTVQE4SFp_EuzrCPSKvDhEwM,32446
|
|
37
|
+
rucio/common/extra.py,sha256=G1jZYovcYOPXhZTxJFGeNFoCREmKUIxXkuaIE1fO9pw,1398
|
|
38
|
+
rucio/common/logging.py,sha256=YsNDES5md8KxzC3sITH-Za0nJzr2Q-qmfvvRvnnIMCw,15818
|
|
39
|
+
rucio/common/pcache.py,sha256=0UefrcSNcEXK7FAAhyg0s2felnAhSIFNZ0UZTRiEjlo,47008
|
|
40
|
+
rucio/common/plugins.py,sha256=rH7_MOkckt_OWCg6El83ytOXetv26_sP-Zs8AAn_vDU,6286
|
|
41
|
+
rucio/common/policy.py,sha256=DvUV0YBuICgz3TiVEY1TQxoXGXdYcwtVTwdq3kKMQ1E,3085
|
|
42
|
+
rucio/common/stomp_utils.py,sha256=3GTiRTJ0roe5OX_wgkVwOJYAIhGgYbhiROHc2M8LQT8,5414
|
|
43
|
+
rucio/common/stopwatch.py,sha256=_9zxoLjr8A0wUDJsljK4vZNDCI-dIOgpcxXiCNVJcHU,1641
|
|
44
|
+
rucio/common/test_rucio_server.py,sha256=r35Pm1DMAHMMhQUG1GMV3Se8LSAZb3_xHBWU-poILNU,4935
|
|
45
|
+
rucio/common/types.py,sha256=1tbj6DJhjIovvHQVP1xUjqdXCX8Mg2eEZ3sXDDwXlro,9996
|
|
46
|
+
rucio/common/utils.py,sha256=1NKhpJybKMOSlAYkoIaumgEP6kp8kwQkdLAaOjiZaJk,82568
|
|
47
|
+
rucio/common/dumper/__init__.py,sha256=gb_vQ8WuMKlVGt6uG09a7reMuQIB9hf0jq8zWgCNWKc,10817
|
|
48
|
+
rucio/common/dumper/consistency.py,sha256=udutGwDRMPCxt_rE7A-3LnXqhuO3Wn3yj5ZOb-VDbO4,16543
|
|
49
|
+
rucio/common/dumper/data_models.py,sha256=mtnGWWnVeyuhUFWDI5YoL8cryd4H4mnPvhC72R4pp5g,9984
|
|
50
|
+
rucio/common/dumper/path_parsing.py,sha256=VhuwlJcfKSKlwV3bBnzUHEhu-KuKLgy8FMDS1fDgDnA,1923
|
|
51
|
+
rucio/common/schema/__init__.py,sha256=xLZXejC8vl8fco-wW6srBDw2WApCmo1qn01Nm2N0MC8,5510
|
|
52
|
+
rucio/common/schema/atlas.py,sha256=VR6iUVIiK7V6c67iuZZVYlz8vMFBWJTzOHqqdPmRPJQ,15638
|
|
53
|
+
rucio/common/schema/belleii.py,sha256=1dlgVdx3GfWf9jhkA4EyjYchpekiTpiEjPvyw58GU6o,15455
|
|
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
|
|
59
|
+
rucio/core/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
60
|
+
rucio/core/account.py,sha256=T0Pg7HxU7TYx2MWRfgsUgHYh6hBOZZa4mKQLu_iqUIc,16401
|
|
61
|
+
rucio/core/account_counter.py,sha256=DjxaZfyXKY4VJ7fQgLywkaB4882PIX27f9FXRv0UdbM,7253
|
|
62
|
+
rucio/core/account_limit.py,sha256=X1Rmky63jFt9PTgBJ3tZvfhOksAh_D6B6Nk3QGx5OSU,15278
|
|
63
|
+
rucio/core/authentication.py,sha256=JN-JXXFXCcUwBpLOnNkQr00-5LW81I88EkDeG8eDzJg,21045
|
|
64
|
+
rucio/core/config.py,sha256=zlUVs1TW_GizgyGDNsEeLLFlz-HAPXkROm1-b3ASlxE,14687
|
|
65
|
+
rucio/core/credential.py,sha256=-8ELE2mdvW2nm1zqKIoNVOxewzevuJZ38bDL5Zc5YhI,8337
|
|
66
|
+
rucio/core/did.py,sha256=lBpT52efXSCasb3c4HLXTXZc35_P_sV1cLQvHGgKKAc,114451
|
|
67
|
+
rucio/core/dirac.py,sha256=WdceDXJrFIPcrvsktBSpUrxXsWjMNgrwHtaAkYt9C6c,9785
|
|
68
|
+
rucio/core/distance.py,sha256=jfmbcZUtFWDp3DaOw_o2cZGwlTIywpAtOFUmfBF-_N0,6001
|
|
69
|
+
rucio/core/exporter.py,sha256=4ZODnaVaupBdM2ILEGnQkqBtNbnJ3Ek9mSqJr41DxpA,1875
|
|
70
|
+
rucio/core/heartbeat.py,sha256=xesayFiO_mFsfvbmaGf0pLyeCTW0dZ4LHypOnDhzlbk,11380
|
|
71
|
+
rucio/core/identity.py,sha256=Hzr44xdMRsDaYMXCDUtz0mrXM_NpPoyr8n6Ie3wvYZM,12099
|
|
72
|
+
rucio/core/importer.py,sha256=W2wB4BO4bSht11Z8MwWXQkQBhi4q9BDJ2Vg5qRFl_3g,14256
|
|
73
|
+
rucio/core/lifetime_exception.py,sha256=mTWUYQr1EyYopR2EiiWMIQGUpaDUIe9u_lpUg_dQrLk,15321
|
|
74
|
+
rucio/core/lock.py,sha256=IYUszJQ0UmL7bl8msojnk5fJmIlhhcuzw0f8_Q5zbB8,23349
|
|
75
|
+
rucio/core/message.py,sha256=qYCcNq3gUphB2PWb3Iw29vkSCw4_H5ZG8FYnxbNs2iM,10047
|
|
76
|
+
rucio/core/meta_conventions.py,sha256=E7vDZdlvN1r6RZ6zh9RKwEoxQ-Q5imm7GY3-Ywzg3mY,8599
|
|
77
|
+
rucio/core/monitor.py,sha256=yn5abm-xR8fimrbqCskHQuSbNZ5XfEdx3HdBwz5lGG4,15984
|
|
78
|
+
rucio/core/naming_convention.py,sha256=0tgFYgUk0SjF3zNS4_IvDvDTHQHZKQvktFw5Pjr2ZLI,6218
|
|
79
|
+
rucio/core/nongrid_trace.py,sha256=Dj7fmtD_Y-CSb6ZZ6vv1wR8g-ti6bA-CXM6OsJsK4S0,5196
|
|
80
|
+
rucio/core/oidc.py,sha256=xZXGdU9nKcaiCsmoAN-mRyXOZOTiif5F8qbEK2kJjXs,70446
|
|
81
|
+
rucio/core/quarantined_replica.py,sha256=OocJYFktL_P1JcMgFLRThIzuJjdRbUW1LzyoZ5ngSoI,8316
|
|
82
|
+
rucio/core/replica.py,sha256=ZU6TysZJNLPX8W2VIarSbbhaRlNzxPvKROkK23RmgEs,179205
|
|
83
|
+
rucio/core/replica_sorter.py,sha256=6ubrUM1lydnfEPDXGR6ukiC6dlYVOyRIlP_wcbawLuc,15675
|
|
84
|
+
rucio/core/request.py,sha256=xb5ED4WG5pdKJAS8U_RaPsX_3JmF385aZbBQ_PuEBYI,120113
|
|
85
|
+
rucio/core/rse.py,sha256=h1RllMuJlf9QXHWpRr8Y0Oj1tdaFflYTjbv_YUlhf4E,67935
|
|
86
|
+
rucio/core/rse_counter.py,sha256=9dbjlULYPove9sJzUt2B71ldxiYW2CcuFZ7-WFoVxkA,6131
|
|
87
|
+
rucio/core/rse_expression_parser.py,sha256=wayI9H-FAU9G8WwAfQIfbbOsn9x37uSkPlY2brJIxA8,15368
|
|
88
|
+
rucio/core/rse_selector.py,sha256=uXCWmQXJWT57VHApSIVuTD2t6_IdvpKpPhMVYozcNhM,14577
|
|
89
|
+
rucio/core/rule.py,sha256=3HNdSVrD80SKEXK82Be9_CS2qqEsji9V4zJTIK-zE7s,208869
|
|
90
|
+
rucio/core/rule_grouping.py,sha256=00VgShoOqAL0mfLHGIxQxijxF8NLUQ20PJRRnDErxWw,95995
|
|
91
|
+
rucio/core/scope.py,sha256=iTSuygCzy3NsWxBiOQ_w0sGOsWGWMHJggyJpmJcjMDg,5901
|
|
92
|
+
rucio/core/subscription.py,sha256=5w75-sQZXdwq3laNzbCzqMZ_Do6kaTUnY6L3BTogWYo,16331
|
|
93
|
+
rucio/core/topology.py,sha256=U63jxAsSmRnEc1JJGc9M_frwGZZSYRz1a1RJhyUEXC8,19224
|
|
94
|
+
rucio/core/trace.py,sha256=dAXMBvokinqHYGiZ4rgSDNFCDer4jG_Wb4AIgXVoB7Q,13592
|
|
95
|
+
rucio/core/transfer.py,sha256=LTXFyuY9JyJcTQVnJCnCP-uqaHv5CSrNgaUi9u_TMWI,64409
|
|
96
|
+
rucio/core/vo.py,sha256=mofxN5QO9ojqg0TXK9QgIm9UqqJV5qlocpEeOJ1_aaA,5915
|
|
97
|
+
rucio/core/volatile_replica.py,sha256=hgi2Zk-hdIB5qKh021cy5nvXrOKcSIqOsBgwrAJDbyw,5499
|
|
98
|
+
rucio/core/did_meta_plugins/__init__.py,sha256=dBkDWr3PwemYSekYvOZtWVgRHAHBHkC57XlII5Oja-k,11950
|
|
99
|
+
rucio/core/did_meta_plugins/did_column_meta.py,sha256=MGGXyGeHt5TbVteYo60SJ_03isyuMUKLF1lgsh1O420,17556
|
|
100
|
+
rucio/core/did_meta_plugins/did_meta_plugin_interface.py,sha256=-2qYgyHNpglN1-zgLnewk0tlUFgj90MtkzY3RvOZNQw,4932
|
|
101
|
+
rucio/core/did_meta_plugins/filter_engine.py,sha256=0qH7U9fPdp3kgcKBRIjEwrxL09FUWd7CxO5yrA3KFHw,31114
|
|
102
|
+
rucio/core/did_meta_plugins/json_meta.py,sha256=yurzU09OP0eCl3JjoHFbKJ0TK0svDMEXsWFMYbnM7LQ,9918
|
|
103
|
+
rucio/core/did_meta_plugins/mongo_meta.py,sha256=TFqnuQAJeaDHqMVxFyX21Gx8DsAqhRcGBoRA6uccqJI,8065
|
|
104
|
+
rucio/core/did_meta_plugins/postgres_meta.py,sha256=sZJzeFXZv-YarKQ14PIXA90VAZcOWFYqJse0kNUyNu0,13727
|
|
105
|
+
rucio/core/permission/__init__.py,sha256=y5PIamXDONtbNyP69tVhcA1X_uTf6hb557gVOqHnF3A,4196
|
|
106
|
+
rucio/core/permission/atlas.py,sha256=PQgj4oYPIi5v77Ih8jszuVDbf0rzreS8N-t1lvwBE_o,55734
|
|
107
|
+
rucio/core/permission/belleii.py,sha256=OA0ZFt85JQl4nrujBBnHQkfI276dzuJ9h1CpZkCrkl0,46969
|
|
108
|
+
rucio/core/permission/escape.py,sha256=7EOsVCvXNjbnMIDaXpzuUST-ls_0fxU07UkcmKPuQJY,43171
|
|
109
|
+
rucio/core/permission/generic.py,sha256=UimFjJSfhqVZmT71eWtgfwm6s4jr-6sng78bSrSpUaM,48439
|
|
110
|
+
rucio/core/permission/generic_multi_vo.py,sha256=yRSDEJnhJVDBNMkwtkXOJ-xJftiCTGFgjvcHvRgVEoI,45926
|
|
111
|
+
rucio/daemons/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
112
|
+
rucio/daemons/common.py,sha256=bc_Djs_RxoHS3JOEblDAGWejam4_93V3-YttofWWBBw,15597
|
|
113
|
+
rucio/daemons/abacus/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
114
|
+
rucio/daemons/abacus/account.py,sha256=I1rSanUNbmnrkH9VWYey4AmGimh2h4O5RHWJOg1oZew,4015
|
|
115
|
+
rucio/daemons/abacus/collection_replica.py,sha256=SPV9UYkpH77cnX8XdYXxLtbv7CTP_cIztOWGug6i8JE,4069
|
|
116
|
+
rucio/daemons/abacus/rse.py,sha256=ZJYwCZFErXdfCR9Rm399f_bS6JjgMiucm8rleFC69e8,3795
|
|
117
|
+
rucio/daemons/atropos/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
118
|
+
rucio/daemons/atropos/atropos.py,sha256=QJl68d0yxPbvXvRlw3u4s7mxySoJfMrmtQCuP0Pvs10,10574
|
|
119
|
+
rucio/daemons/auditor/__init__.py,sha256=xo5MBE9_phBKJwERBvVT-684rJAzOxYmVyEye1rqwdk,10618
|
|
120
|
+
rucio/daemons/auditor/hdfs.py,sha256=TjYeVYm6_zrQEu9KPYrrHuPJ9yAYAEwuaPNmJFJEG5k,3071
|
|
121
|
+
rucio/daemons/auditor/srmdumps.py,sha256=CuT0AvVTcG0iErl7_bfVqoYZvG6y_ScDPQmGFndkaoc,11099
|
|
122
|
+
rucio/daemons/automatix/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
123
|
+
rucio/daemons/automatix/automatix.py,sha256=-AiHqxTWOHaPuOR5E9FjY9wqz1MMoPui59T_ecyGysc,10177
|
|
124
|
+
rucio/daemons/badreplicas/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
125
|
+
rucio/daemons/badreplicas/minos.py,sha256=GoBMqkr34zaU0KD-h4Bkuy9RDhDKCm2EtA9GPMIds_8,16063
|
|
126
|
+
rucio/daemons/badreplicas/minos_temporary_expiration.py,sha256=yxjKEfBhvOURENiVWirsoRp0PCL8UpUOcVlcVBn-hXU,8626
|
|
127
|
+
rucio/daemons/badreplicas/necromancer.py,sha256=ujTHCD2Fiaz1GwJcJ1qTy0rBj_I7tnEIcP0wFfuNLhE,9830
|
|
128
|
+
rucio/daemons/bb8/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
129
|
+
rucio/daemons/bb8/bb8.py,sha256=AQ_VM-dI-xMfWITh5k9oOMieTrM9_pqtJwA0o-VE9wc,13025
|
|
130
|
+
rucio/daemons/bb8/common.py,sha256=HUtzjhLwosp-Mxs6ynwfpCQfYPNIoeej4s2WuO9zZ8c,27240
|
|
131
|
+
rucio/daemons/bb8/nuclei_background_rebalance.py,sha256=b_EZMthilBA5pLQ-kKVMDe53plbHBnfkgg0KRAwaqj0,6685
|
|
132
|
+
rucio/daemons/bb8/t2_background_rebalance.py,sha256=VImyQdE0DW8V0aJ4k2OEfY8ibCt17DciyOvMKHhyVlw,6564
|
|
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
|
|
153
|
+
rucio/daemons/cache/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
154
|
+
rucio/daemons/cache/consumer.py,sha256=ZzBBs_EJtOFkBV3IhZo-tL65Hgp3yRS--YxuNrbwsm0,6956
|
|
155
|
+
rucio/daemons/conveyor/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
156
|
+
rucio/daemons/conveyor/common.py,sha256=HhruwAk-e8yYM-5L9Kebh46snjPbS4MCJ8UV5EkGrGM,26415
|
|
157
|
+
rucio/daemons/conveyor/finisher.py,sha256=XrrweUPIuB8xCaskmOWeEFrNNaehCrVSgIjHkiPUT1s,24762
|
|
158
|
+
rucio/daemons/conveyor/poller.py,sha256=F1Xlz90zFRYF6uWPRbbAbzkbyo-4oc3LWcdT5guWns4,16897
|
|
159
|
+
rucio/daemons/conveyor/preparer.py,sha256=xwpjQgSLY9zqOyc6pdUbV5-eb_nWMEAiOD_F9nYfXcs,8022
|
|
160
|
+
rucio/daemons/conveyor/receiver.py,sha256=TQnu0QRG0hJDe5sF-L-867f-jdcpbsgw__2NEMT_hIw,8830
|
|
161
|
+
rucio/daemons/conveyor/stager.py,sha256=Zr100m--m8i42qUVY3Bd41HPoEXSleYerUZAyVZL61k,4281
|
|
162
|
+
rucio/daemons/conveyor/submitter.py,sha256=BR22gPDbprkGu1cIq9_GOI3tLSVc81Q2Dl9mLR-4Wwo,17138
|
|
163
|
+
rucio/daemons/conveyor/throttler.py,sha256=5jJ156GHDaGhF85BRj7CGjizpgobAhqf-ZaUiWHdDjU,22345
|
|
164
|
+
rucio/daemons/follower/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
165
|
+
rucio/daemons/follower/follower.py,sha256=ViDKnoDtCHQsxLd78uxJKp4tHeKxRebe74jsnK-uUmU,3438
|
|
166
|
+
rucio/daemons/hermes/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
167
|
+
rucio/daemons/hermes/hermes.py,sha256=oeLuX5dgjeRKywHPh4CDj2HBkDuzQA7iDPqJjNhwB10,27199
|
|
168
|
+
rucio/daemons/judge/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
169
|
+
rucio/daemons/judge/cleaner.py,sha256=yCv9prY-L_rpkJE2YhkKcCtaDgs2SMGS9HKi_O1hKFM,5956
|
|
170
|
+
rucio/daemons/judge/evaluator.py,sha256=CDoJhUi_UYQbY7KewXoBRpB27B8rLiE45dX8oSeXdzc,7413
|
|
171
|
+
rucio/daemons/judge/injector.py,sha256=XPW1rHejISjRpVv7Aqts7B-IA8vfsQfLL9ruHfMRqDk,6578
|
|
172
|
+
rucio/daemons/judge/repairer.py,sha256=8QxdS5UHtI_j_atIDKQi5NjHGDsiIkN2nQCFhL4l1qQ,5507
|
|
173
|
+
rucio/daemons/oauthmanager/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
174
|
+
rucio/daemons/oauthmanager/oauthmanager.py,sha256=vgIGgx-Vd-WFoyCs_5vO5wtGuBcFSpMbZVAF-i3TQtw,8817
|
|
175
|
+
rucio/daemons/reaper/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
176
|
+
rucio/daemons/reaper/dark_reaper.py,sha256=B4Dnt8Nqslxx8mCdmwK0QqqkGaZ1FX0AnYnf9QxuzYs,11431
|
|
177
|
+
rucio/daemons/reaper/reaper.py,sha256=Mt0WoE1hSY64hZlK77ZiCIVJvkUsXIQCahrx2NPZmVU,37006
|
|
178
|
+
rucio/daemons/replicarecoverer/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
179
|
+
rucio/daemons/replicarecoverer/suspicious_replica_recoverer.py,sha256=kkB-2jAcSm-FPqT3Pr6Uwf0tmDp5dd-_Mfj7jBo82cE,35860
|
|
180
|
+
rucio/daemons/rsedecommissioner/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
181
|
+
rucio/daemons/rsedecommissioner/config.py,sha256=OXnsZJcmgj9kxa99Lzbkh_cTeUKPmA8ZfpzjQt8fW-w,2726
|
|
182
|
+
rucio/daemons/rsedecommissioner/rse_decommissioner.py,sha256=6WA4apD8zS5UAiUcnsLPUQdoKEl8awce3zbyc195cXY,10420
|
|
183
|
+
rucio/daemons/rsedecommissioner/profiles/__init__.py,sha256=AN6POeAUbMQxpUhAGIOvK_CDsBWCAQGhmrpODolHOWg,863
|
|
184
|
+
rucio/daemons/rsedecommissioner/profiles/atlas.py,sha256=fyqBwIesYHHPh3KZ4U62E4L90QtNbWvWwuW9B3gYj-I,2232
|
|
185
|
+
rucio/daemons/rsedecommissioner/profiles/generic.py,sha256=_Zc4jsCNDoH3TRHWJsuYIbgBYhLjw1gvQjCygxX6K4Y,16328
|
|
186
|
+
rucio/daemons/rsedecommissioner/profiles/types.py,sha256=M4iBy6NI16k1j3fZJc4g4IaU9wRTiQgGLOToWwZb6pU,2999
|
|
187
|
+
rucio/daemons/storage/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
188
|
+
rucio/daemons/storage/consistency/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
189
|
+
rucio/daemons/storage/consistency/actions.py,sha256=cAkxJq4RU641w35hh_V6dwRjnBpXLDtjm-E85z3BO0g,31727
|
|
190
|
+
rucio/daemons/tracer/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
191
|
+
rucio/daemons/tracer/kronos.py,sha256=3X9v8twgfOUHD6DugU4r5ucwsQiZ_suJrbiis0bHwks,24294
|
|
192
|
+
rucio/daemons/transmogrifier/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
193
|
+
rucio/daemons/transmogrifier/transmogrifier.py,sha256=9-WC2Qcm0ccIBrVJ08VjF2bTemhEUkruMwKF6qnkICg,30664
|
|
194
|
+
rucio/daemons/undertaker/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
195
|
+
rucio/daemons/undertaker/undertaker.py,sha256=0X1usPC7DFExqVqedZO-EeTcoSrgGTMJXSRB0eHQMt4,5254
|
|
196
|
+
rucio/db/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
197
|
+
rucio/db/sqla/__init__.py,sha256=nVXdqNgRs6AXgN7cVM3MAdHZZDX1l0FdVEabWEtMbbw,2506
|
|
198
|
+
rucio/db/sqla/constants.py,sha256=6yfMxBvkCl9luUn-90CKaLCUvLkicPB3vTF-XQttqfw,4151
|
|
199
|
+
rucio/db/sqla/models.py,sha256=-7F6gALdHfN5tGPL1rcWdH_MNi2djQwUA6zmLHBgjyw,110519
|
|
200
|
+
rucio/db/sqla/sautils.py,sha256=X4gHWCkqvDlJEEHmhO2txV94__kvS8M9Hb1aJvbLaUg,2000
|
|
201
|
+
rucio/db/sqla/session.py,sha256=4c1G9GXBcD2PPgZlhTs3MhZSxd27yhbaZDAjmOyNXks,18577
|
|
202
|
+
rucio/db/sqla/types.py,sha256=h2MxHRv90dzuIUIz3bSEjolcLkPufLnhhiVlR3iN0PA,6088
|
|
203
|
+
rucio/db/sqla/util.py,sha256=ls1G_vX90zO60-zTtoupQ_ccEMYeObRHAsUWct6Dl9o,22597
|
|
204
|
+
rucio/db/sqla/migrate_repo/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
205
|
+
rucio/db/sqla/migrate_repo/env.py,sha256=rSNoSvBSykAbjBXvQ3jpsN7MDr0xfYipdRg3VS42ji0,3545
|
|
206
|
+
rucio/db/sqla/migrate_repo/versions/01eaf73ab656_add_new_rule_notification_state_progress.py,sha256=rCIOzEnPJvd3uGqp-Ks-_KQNFoMhrLPWNXZUjSFbIlY,3340
|
|
207
|
+
rucio/db/sqla/migrate_repo/versions/0437a40dbfd1_add_eol_at_in_rules.py,sha256=-FIdt2T328qNgIA7Ry3bLmlwNznMawo2ecQE2OSSGSo,1821
|
|
208
|
+
rucio/db/sqla/migrate_repo/versions/0f1adb7a599a_create_transfer_hops_table.py,sha256=U4PQahMlOc8LBqG2m8LCLLePvV8bHja7qPkiK5QoMtE,2640
|
|
209
|
+
rucio/db/sqla/migrate_repo/versions/102efcf145f4_added_stuck_at_column_to_rules.py,sha256=WCAX7OB9pq9RU_YEYd8_4JNenAHTk8MoOGLGi7nC7J0,1533
|
|
210
|
+
rucio/db/sqla/migrate_repo/versions/13d4f70c66a9_introduce_transfer_limits.py,sha256=BjUObseQNHWKAlRAoGpJnVSX0P3TkCSyFVbla4ieHUA,5272
|
|
211
|
+
rucio/db/sqla/migrate_repo/versions/140fef722e91_cleanup_distances_table.py,sha256=rt_v1W5OM9X4GSgihEU6deX-rWtLlu9SEnMDhf0BFa0,3659
|
|
212
|
+
rucio/db/sqla/migrate_repo/versions/14ec5aeb64cf_add_request_external_host.py,sha256=-1cmzs6sWw3keF_0ykvX8q4XACT9s7Cct_DXus9diRE,1548
|
|
213
|
+
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=yjWS-MytcApA0AQoSMJG-icHWpab_RUwb0dBUm2xYo8,2816
|
|
215
|
+
rucio/db/sqla/migrate_repo/versions/16a0aca82e12_create_index_on_table_replicas_path.py,sha256=9BYNLV7An0rK9mUPajVSq_SGwUk3p1Upz7_3oZSFBOI,1260
|
|
216
|
+
rucio/db/sqla/migrate_repo/versions/1803333ac20f_adding_provenance_and_phys_group.py,sha256=0kAR3NFcdrIBEiwKPw_lu3xT2aD6QQPutscD8GUb9D8,1678
|
|
217
|
+
rucio/db/sqla/migrate_repo/versions/1a29d6a9504c_add_didtype_chck_to_requests.py,sha256=huCVPROWcArtyqP7y8VhfsqwmKx8uDVBdrRPpx95-Rw,2675
|
|
218
|
+
rucio/db/sqla/migrate_repo/versions/1a80adff031a_create_index_on_rules_hist_recent.py,sha256=oeqoRcp5h2gC2OAaiwT0HQKNy1Pge4xR-78q3BkSewM,1314
|
|
219
|
+
rucio/db/sqla/migrate_repo/versions/1c45d9730ca6_increase_identity_length.py,sha256=U4azYkJKxBaaLDBQ7GQC4VVc4uKqPIq0iHsxIo247qM,8494
|
|
220
|
+
rucio/db/sqla/migrate_repo/versions/1d1215494e95_add_quarantined_replicas_table.py,sha256=OIlB_Tgh3NVszS0Og8w3ncG_3wI3yiuM-SLE4HL_ru4,3277
|
|
221
|
+
rucio/db/sqla/migrate_repo/versions/1d96f484df21_asynchronous_rules_and_rule_approval.py,sha256=QMj6ZTm-5G9XnwgIBo3MEeap83zyaeXXhrToRQBuWZE,3782
|
|
222
|
+
rucio/db/sqla/migrate_repo/versions/1f46c5f240ac_add_bytes_column_to_bad_replicas.py,sha256=XplW4DjLJVA2YH_txS7Qxj3Tk-PcyQiutO54Q4XXrDE,1546
|
|
223
|
+
rucio/db/sqla/migrate_repo/versions/1fc15ab60d43_add_message_history_table.py,sha256=C01zvBwohEML8YsibjaP9toeYob14gxiqlLtMT5Ug-I,1692
|
|
224
|
+
rucio/db/sqla/migrate_repo/versions/2190e703eb6e_move_rse_settings_to_rse_attributes.py,sha256=mlbVJyAVFsJ8-KpcDDkdjKdGUdDOClA_GvLQT0biHmY,4360
|
|
225
|
+
rucio/db/sqla/migrate_repo/versions/21d6b9dc9961_add_mismatch_scheme_state_to_requests.py,sha256=9-neqYrww6SoRrQeeq2JjRCLtl3xkLoWIrwpRfT6LM0,3014
|
|
226
|
+
rucio/db/sqla/migrate_repo/versions/22cf51430c78_add_availability_column_to_table_rses.py,sha256=Li3hmYtvCH_LAcsJbsJ0bgijnux1uxonOhrTgMDwrRk,1497
|
|
227
|
+
rucio/db/sqla/migrate_repo/versions/22d887e4ec0a_create_sources_table.py,sha256=VFlKb43mgD9HoLlmku1QaNgc2ySs9_R9aVCDytqgdzE,2781
|
|
228
|
+
rucio/db/sqla/migrate_repo/versions/25821a8a45a3_remove_unique_constraint_on_requests.py,sha256=-_o-Wch4ZjaVDCHfjRrBoYKHxspNXB25vRViZqbdIlM,2297
|
|
229
|
+
rucio/db/sqla/migrate_repo/versions/25fc855625cf_added_unique_constraint_to_rules.py,sha256=JuSBnU6yU8u8e8sOA5X4vgsilATm70D_yl6Qix-njU4,1400
|
|
230
|
+
rucio/db/sqla/migrate_repo/versions/269fee20dee9_add_repair_cnt_to_locks.py,sha256=62J76S-EPfHRTsSOfNssuYHlSgPZ-zl14sLjFL3jK7Q,1535
|
|
231
|
+
rucio/db/sqla/migrate_repo/versions/271a46ea6244_add_ignore_availability_column_to_rules.py,sha256=0m2EPX-qkwuHEGLVveUy6PVUKwOl1wEoFXqcfM60W2A,1641
|
|
232
|
+
rucio/db/sqla/migrate_repo/versions/277b5fbb41d3_switch_heartbeats_executable.py,sha256=dM5eqPHu1VzpztnryD3A6bYQiATA2KpD-rzFGV1K1-g,2274
|
|
233
|
+
rucio/db/sqla/migrate_repo/versions/27e3a68927fb_remove_replicas_tombstone_and_replicas_.py,sha256=AmSNs3t4xj65wsaZamBuvkPvgs4TWTjxbdM_7r7Dm6s,1219
|
|
234
|
+
rucio/db/sqla/migrate_repo/versions/2854cd9e168_added_rule_id_column.py,sha256=MaPO6_egB_RcxcClGtXbxqdvQbXlLQaXvYHjjySOcfA,1710
|
|
235
|
+
rucio/db/sqla/migrate_repo/versions/295289b5a800_processed_by_and__at_in_requests.py,sha256=miBtcW9EWu91yH0cU8wOdn8OaJDgvElV1JjO-6chiEc,1723
|
|
236
|
+
rucio/db/sqla/migrate_repo/versions/2962ece31cf4_add_nbaccesses_column_in_the_did_table.py,sha256=cTIy6TomlfpU9JSZ-a2HkGfg4b7E5C41NPbhT7sgq-k,1695
|
|
237
|
+
rucio/db/sqla/migrate_repo/versions/2af3291ec4c_added_replicas_history_table.py,sha256=VnD-A-ZEDAYc2b0rN-1TW7qfPuCIvsUfVn7X-ljuvLk,2206
|
|
238
|
+
rucio/db/sqla/migrate_repo/versions/2b69addda658_add_columns_for_third_party_copy_read_.py,sha256=vY6e-h8nWMBn5pCDqw9YkGcK0zD1Zw8BOqlOlqSls-Q,1787
|
|
239
|
+
rucio/db/sqla/migrate_repo/versions/2b8e7bcb4783_add_config_table.py,sha256=CSsN44kRRmERTEUPmoWEaBNXhVJIXZzW9Qp6q6Z1uyQ,2837
|
|
240
|
+
rucio/db/sqla/migrate_repo/versions/2ba5229cb54c_add_submitted_at_to_requests_table.py,sha256=TlCQQi9LVErOycL56IV6H8JxqXxKlMlj7vvIafUWTLc,1554
|
|
241
|
+
rucio/db/sqla/migrate_repo/versions/2cbee484dcf9_added_column_volume_to_rse_transfer_.py,sha256=xB1ldZGhvGT-svZzkNPCeVl_DbSq-9xWerKGN-dhy2c,1571
|
|
242
|
+
rucio/db/sqla/migrate_repo/versions/2edee4a83846_add_source_to_requests_and_requests_.py,sha256=MygDOHQM8YfOwMqI2RGG8FEjvLYr2y2Qr-pW9GgPEhg,1758
|
|
243
|
+
rucio/db/sqla/migrate_repo/versions/2eef46be23d4_change_tokens_pk.py,sha256=vsp_wima3qUI6YfxFE8ij2veJuw3ZRaMrShUR75VyY4,1768
|
|
244
|
+
rucio/db/sqla/migrate_repo/versions/2f648fc909f3_index_in_rule_history_on_scope_name.py,sha256=kcC5B4k-Jj1Vn-XOvEOawOFaqk4wb65DVGdw6ZmjBBU,1308
|
|
245
|
+
rucio/db/sqla/migrate_repo/versions/3082b8cef557_add_naming_convention_table_and_closed_.py,sha256=C4MAeH2hIzsZ0gVCZXccIdqm7eEX7-BYffUrp2QCYds,3227
|
|
246
|
+
rucio/db/sqla/migrate_repo/versions/30fa38b6434e_add_index_on_service_column_in_the_message_table.py,sha256=ga4O2YW0cxfOFnqaEFdItAa2zP60ImPrhU1jzRYzEL4,2019
|
|
247
|
+
rucio/db/sqla/migrate_repo/versions/3152492b110b_added_staging_area_column.py,sha256=GxKaq4IiGk_6qp4cBKFHjE_iNkm6pOpJyB7kZpQcxJ4,3882
|
|
248
|
+
rucio/db/sqla/migrate_repo/versions/32c7d2783f7e_create_bad_replicas_table.py,sha256=RNLn1DobGnhBshlZSLDz2tu3WCHkEnmsPFGssUtpEds,2513
|
|
249
|
+
rucio/db/sqla/migrate_repo/versions/3345511706b8_replicas_table_pk_definition_is_in_.py,sha256=Oz3_IzpkknNjphigf0P1XwpSeib1iPPl--ATQkRaV8w,3997
|
|
250
|
+
rucio/db/sqla/migrate_repo/versions/35ef10d1e11b_change_index_on_table_requests.py,sha256=U_q_cPYyY2UB8ZueyjqyrJY8nPjtUYn5UtkiELMQmN8,1470
|
|
251
|
+
rucio/db/sqla/migrate_repo/versions/379a19b5332d_create_rse_limits_table.py,sha256=nIM4Hj3ZBwtF1xrbGKVqvs5joj4gzIB4w6OVGM1g2iU,2817
|
|
252
|
+
rucio/db/sqla/migrate_repo/versions/384b96aa0f60_created_rule_history_tables.py,sha256=mzUO2gZDuhnoJDd-VNAXu6DQOZuG_Ut88JWUmQeeVCs,7527
|
|
253
|
+
rucio/db/sqla/migrate_repo/versions/3ac1660a1a72_extend_distance_table.py,sha256=7ON4c5PoHOlJEr-bD8VfeH_JwR6e9Ap-j2OmW1SWZMI,2396
|
|
254
|
+
rucio/db/sqla/migrate_repo/versions/3ad36e2268b0_create_collection_replicas_updates_table.py,sha256=p0A_NWmLiJvoomEyNlc_B-cmKT4zZoMxDx9ORM8aYXY,3592
|
|
255
|
+
rucio/db/sqla/migrate_repo/versions/3c9df354071b_extend_waiting_request_state.py,sha256=BaDaQsd61vamqvg9DanNjKETe8_skPAUmXkJlBZDfUE,2687
|
|
256
|
+
rucio/db/sqla/migrate_repo/versions/3d9813fab443_add_a_new_state_lost_in_badfilesstatus.py,sha256=x7QAXFYLnSe0nNZUAhjKNUdiLUTJ2RFOmJZ1FEjWPWE,1450
|
|
257
|
+
rucio/db/sqla/migrate_repo/versions/40ad39ce3160_add_transferred_at_to_requests_table.py,sha256=eKyQyVqWoZzVEwNvcGXhicB4brxY2VZh2FaqsbEHJSM,1560
|
|
258
|
+
rucio/db/sqla/migrate_repo/versions/4207be2fd914_add_notification_column_to_rules.py,sha256=2y_36HBD_KkebJ04Zrg-_AFKXHF_ZNPkNapxLEXB7CA,2777
|
|
259
|
+
rucio/db/sqla/migrate_repo/versions/42db2617c364_create_index_on_requests_external_id.py,sha256=_hnnhc4JCXMzjMIzCTINpcTBqDeO_mqQHUHECpFOTJ8,1287
|
|
260
|
+
rucio/db/sqla/migrate_repo/versions/436827b13f82_added_column_activity_to_table_requests.py,sha256=UiEdNaLdK2_YIJcedeSUrs-VKap2pBIu1QVGxnVAjzE,1551
|
|
261
|
+
rucio/db/sqla/migrate_repo/versions/44278720f774_update_requests_typ_sta_upd_idx_index.py,sha256=hZ5qAQYXilfwPJ5Ue-b4tYlNp3Ik28FfPPWJ-RFP23E,1644
|
|
262
|
+
rucio/db/sqla/migrate_repo/versions/45378a1e76a8_create_collection_replica_table.py,sha256=mWe8KdBPEDnpVxXhahJrSJLR5XvU-nCS4gM1goJbpIc,3682
|
|
263
|
+
rucio/db/sqla/migrate_repo/versions/469d262be19_removing_created_at_index.py,sha256=CvsJO1nysfIPmfqwOINqvv14Y62ZAbELaYu9F_qkHXc,1420
|
|
264
|
+
rucio/db/sqla/migrate_repo/versions/4783c1f49cb4_create_distance_table.py,sha256=DFhqCGb6d-tzZDI0gjeb2sTpLCRjPPee56NgvLhhJao,2424
|
|
265
|
+
rucio/db/sqla/migrate_repo/versions/49a21b4d4357_create_index_on_table_tokens.py,sha256=shmbvNxWT3dfI_jKFHVh-6ZLLqLXzFJFDmvvEohLEcE,1666
|
|
266
|
+
rucio/db/sqla/migrate_repo/versions/4a2cbedda8b9_add_source_replica_expression_column_to_.py,sha256=XMOmlnyMJTuyP4I_6lXVTzqyRQ1d3PA-YXFmzWNIz_Y,1585
|
|
267
|
+
rucio/db/sqla/migrate_repo/versions/4a7182d9578b_added_bytes_length_accessed_at_columns.py,sha256=8VEtfQuE2sPRTG4ej0Dfso3lJSVCYNY-DGCaifbJaOA,2008
|
|
268
|
+
rucio/db/sqla/migrate_repo/versions/4bab9edd01fc_create_index_on_requests_rule_id.py,sha256=bvlnrsRnCfJpmGlRebQ9MrAO0xGk62u-qJCkJR9MpQk,1272
|
|
269
|
+
rucio/db/sqla/migrate_repo/versions/4c3a4acfe006_new_attr_account_table.py,sha256=c9b9JW4SIdGurXobHYXb9HBPuUvFTSUTt7imf-gWMec,2757
|
|
270
|
+
rucio/db/sqla/migrate_repo/versions/4cf0a2e127d4_adding_transient_metadata.py,sha256=LWwdOjAXxzLkbNuiMPyc4ZH8S-U8YqIMozeyZ47Dveg,1598
|
|
271
|
+
rucio/db/sqla/migrate_repo/versions/4df2c5ddabc0_remove_temporary_dids.py,sha256=OCYd23lNpjP8x_6l-kvIqnhIYXb66hMAMRJn5PyljJw,2476
|
|
272
|
+
rucio/db/sqla/migrate_repo/versions/50280c53117c_add_qos_class_to_rse.py,sha256=6pQFOvZxwSxeL7DSWUtnFy6gH8hB83zdiFgA66OtzZE,1542
|
|
273
|
+
rucio/db/sqla/migrate_repo/versions/52153819589c_add_rse_id_to_replicas_table.py,sha256=n13mGzw-Pn9MvjxhbcakXF_6wjgU4YCfPPLeuWCE-dc,1417
|
|
274
|
+
rucio/db/sqla/migrate_repo/versions/52fd9f4916fa_added_activity_to_rules.py,sha256=n4dx3cQrRaec7fIS8m_X8wKeJFfe9yDeePFbxJZR4II,1526
|
|
275
|
+
rucio/db/sqla/migrate_repo/versions/53b479c3cb0f_fix_did_meta_table_missing_updated_at_.py,sha256=Xa0bgHjRu1dp3aDhma3USwqXiMLo3jcoiinkioXgVs0,1716
|
|
276
|
+
rucio/db/sqla/migrate_repo/versions/5673b4b6e843_add_wfms_metadata_to_rule_tables.py,sha256=fmONtqLsM6E-NaPWcS2O2Gk_k2vtMbsVjlCWzsvasJU,1829
|
|
277
|
+
rucio/db/sqla/migrate_repo/versions/575767d9f89_added_source_history_table.py,sha256=UAwlbQHBZ3iyTEM9SAgys9k_5ZiqEqfd_HIdJtUdYc8,2363
|
|
278
|
+
rucio/db/sqla/migrate_repo/versions/58bff7008037_add_started_at_to_requests.py,sha256=unbnPoCw3_lnlnEFJlG-CArIxdtXfQIoEOr8XDRsOjk,1701
|
|
279
|
+
rucio/db/sqla/migrate_repo/versions/58c8b78301ab_rename_callback_to_message.py,sha256=WLqEfgCTdzd8_NAH31cMhzLnNBpreDDrzWItKBSKXjA,6101
|
|
280
|
+
rucio/db/sqla/migrate_repo/versions/5f139f77382a_added_child_rule_id_column.py,sha256=rNkZAYg4Uv88OuCsVfGPUngak7iPeolns4h9eUERIzM,2266
|
|
281
|
+
rucio/db/sqla/migrate_repo/versions/688ef1840840_adding_did_meta_table.py,sha256=FMAr0kJbGbtTWJcnKI6PaS-4GBk2OJWtiM3tY2X0RNc,1666
|
|
282
|
+
rucio/db/sqla/migrate_repo/versions/6e572a9bfbf3_add_new_split_container_column_to_rules.py,sha256=mh1F1GwPozK7cACW-0yYnmoGjmN7porLdbhqEwk1qN4,1969
|
|
283
|
+
rucio/db/sqla/migrate_repo/versions/70587619328_add_comment_column_for_subscriptions.py,sha256=9shBnC1dAK5q3gxSv2ew48SMIui0OxQSV0iMezXbd4I,1559
|
|
284
|
+
rucio/db/sqla/migrate_repo/versions/739064d31565_remove_history_table_pks.py,sha256=2S9ldvXzeAfoBATYDBWmPMx8PAfLXEukLb69ABZ2z0U,1363
|
|
285
|
+
rucio/db/sqla/migrate_repo/versions/7541902bf173_add_didsfollowed_and_followevents_table.py,sha256=U52jnp1YX1kBt59N_ixYvoTuUXtJIps_lmAb_GphK-Y,5021
|
|
286
|
+
rucio/db/sqla/migrate_repo/versions/7ec22226cdbf_new_replica_state_for_temporary_.py,sha256=C1lF-oXEY2OP7lxxqb-zVQj3RlNIDszIC58qzXXatQg,3568
|
|
287
|
+
rucio/db/sqla/migrate_repo/versions/810a41685bc1_added_columns_rse_transfer_limits.py,sha256=CFrckIX1r-J6rRBImx50FslMl3I2_A2cxy0QemC2jAw,1893
|
|
288
|
+
rucio/db/sqla/migrate_repo/versions/83f991c63a93_correct_rse_expression_length.py,sha256=qhmbpbNV8mwmosQwzu8nr2QHq8tatNUh9oDkEoOHvUs,1889
|
|
289
|
+
rucio/db/sqla/migrate_repo/versions/8523998e2e76_increase_size_of_extended_attributes_.py,sha256=egqZcOTdloUltINdiAEkWjLKhSjxIqojpMgWCofHZ_U,1661
|
|
290
|
+
rucio/db/sqla/migrate_repo/versions/8ea9122275b1_adding_missing_function_based_indices.py,sha256=-w7ZCX4tgIy-lvBdXPYZgIHZv02PZu-ras4Ys4QWIMo,2147
|
|
291
|
+
rucio/db/sqla/migrate_repo/versions/90f47792bb76_add_clob_payload_to_messages.py,sha256=d7D3fjVg-s5Ty2KnFOdErTObtZqzbijav0jSCs0j7Sg,1715
|
|
292
|
+
rucio/db/sqla/migrate_repo/versions/914b8f02df38_new_table_for_lifetime_model_exceptions.py,sha256=X5gkVoD90q8Wn8jRQ3Rt1zLxzYXnBrxwZ4wKZXzt0Cg,3118
|
|
293
|
+
rucio/db/sqla/migrate_repo/versions/94a5961ddbf2_add_estimator_columns.py,sha256=Ft68FBCAQQV19P49pxMpZkBLlKytubBDVufHXnZIFWI,1749
|
|
294
|
+
rucio/db/sqla/migrate_repo/versions/9a1b149a2044_add_saml_identity_type.py,sha256=nEs36tWA1BK1P7E1DajCYu55xLTYRMeDjtbxjw-kRUk,5038
|
|
295
|
+
rucio/db/sqla/migrate_repo/versions/9a45bc4ea66d_add_vp_table.py,sha256=W7oHUNWocfoyrw87S5nUXw8C-LQ_v8CPI_fFtAbT4Fs,1938
|
|
296
|
+
rucio/db/sqla/migrate_repo/versions/9eb936a81eb1_true_is_true.py,sha256=ccCzv-BLbPBF9ruN3qX3PMhKq4pnefmC2ayPCxR-ClE,3689
|
|
297
|
+
rucio/db/sqla/migrate_repo/versions/a08fa8de1545_transfer_stats_table.py,sha256=0Cpf_CUad4lbaJYeK7SjD59cwUnOEVtMBrelFRAJNfA,2614
|
|
298
|
+
rucio/db/sqla/migrate_repo/versions/a118956323f8_added_vo_table_and_vo_col_to_rse.py,sha256=_lDNu6vot7YlVIece4GoNBLeic353w9OAvDzh6CSd7c,3117
|
|
299
|
+
rucio/db/sqla/migrate_repo/versions/a193a275255c_add_status_column_in_messages.py,sha256=nuedHZ-BsBHRc0HRGvDu4Tqdj5RZXigLkWvmAbvyyr0,1730
|
|
300
|
+
rucio/db/sqla/migrate_repo/versions/a5f6f6e928a7_1_7_0.py,sha256=N8-JNL2QMMFE09Edi5gWHDd_5xhnX2bhDp4kMVCfsIk,5836
|
|
301
|
+
rucio/db/sqla/migrate_repo/versions/a616581ee47_added_columns_to_table_requests.py,sha256=GYTkJlqK3_fMF08ceh-9Zsug2qpgRTXzZxoI0MLatys,2595
|
|
302
|
+
rucio/db/sqla/migrate_repo/versions/a6eb23955c28_state_idx_non_functional.py,sha256=3FBlHbQpxsliUEfrqIno0SaZYT6L2gQqwoMUw6NnKT0,2195
|
|
303
|
+
rucio/db/sqla/migrate_repo/versions/a74275a1ad30_added_global_quota_table.py,sha256=6xhRR81vyjjjfLfnbzfPe5WiBACOsxtJav-Ajx801Lk,2173
|
|
304
|
+
rucio/db/sqla/migrate_repo/versions/a93e4e47bda_heartbeats.py,sha256=ZL1Uo9vMzC4djhN63sUYKGwMG_uXHMnCzEIdc2f-jec,2726
|
|
305
|
+
rucio/db/sqla/migrate_repo/versions/ae2a56fcc89_added_comment_column_to_rules.py,sha256=4Rou9L4xXwUHBv1gpLwDWSux2feWYLY1xTUlG5Nx7y0,1883
|
|
306
|
+
rucio/db/sqla/migrate_repo/versions/b0070f3695c8_add_deletedidmeta_table.py,sha256=WaOKaBLBWF9J-_zHXELFeOg4FAjqq8JEHwSOXP_Li6c,2196
|
|
307
|
+
rucio/db/sqla/migrate_repo/versions/b4293a99f344_added_column_identity_to_table_tokens.py,sha256=qW6qlrN6c1PvvbBPCfl9VYPmm6TDGeTYm-i0RRfed4Y,1546
|
|
308
|
+
rucio/db/sqla/migrate_repo/versions/b5493606bbf5_fix_primary_key_for_subscription_history.py,sha256=8NlmZpbYGilsrCrcEYT8zu7yg3jQfKqnDafupPgSQXM,1598
|
|
309
|
+
rucio/db/sqla/migrate_repo/versions/b7d287de34fd_removal_of_replicastate_source.py,sha256=zP3SI7t-Iao2aYLjUgF7AK1gW4FnjKM6Wf2V2p_IuDo,5407
|
|
310
|
+
rucio/db/sqla/migrate_repo/versions/b818052fa670_add_index_to_quarantined_replicas.py,sha256=KCNgMtcNxM4WXi3NzFNzwX1GNGpVujCFLPq9g_rUcV8,1348
|
|
311
|
+
rucio/db/sqla/migrate_repo/versions/b8caac94d7f0_add_comments_column_for_subscriptions_.py,sha256=0yntFsmUHPGYfwk5J8TTcsTGONZJJXcQq7kQxItBtEU,1585
|
|
312
|
+
rucio/db/sqla/migrate_repo/versions/b96a1c7e1cc4_new_bad_pfns_table_and_bad_replicas_.py,sha256=2S9q5IuidesQ9pmlcjpk_7HunOtUGlO-MW1gBDwM99U,7344
|
|
313
|
+
rucio/db/sqla/migrate_repo/versions/bb695f45c04_extend_request_state.py,sha256=bliiZgnFs43kThZaQDEZu_-r2xpqNfNgfVgGRHctivQ,3704
|
|
314
|
+
rucio/db/sqla/migrate_repo/versions/bc68e9946deb_add_staging_timestamps_to_request.py,sha256=BAMr-pu76xSSbDJPFOPh_RYjwcpdWxS0uEuerJdIc5M,2091
|
|
315
|
+
rucio/db/sqla/migrate_repo/versions/bf3baa1c1474_correct_pk_and_idx_for_history_tables.py,sha256=Vw-HWPzbcebA43261n0CowfuBcBLf4dcZdjKXtD8oRE,2934
|
|
316
|
+
rucio/db/sqla/migrate_repo/versions/c0937668555f_add_qos_policy_map_table.py,sha256=iifuUmFMmAWWDZtFDgYhwcaa0UlmXIUs8PXLkruSa5I,2121
|
|
317
|
+
rucio/db/sqla/migrate_repo/versions/c129ccdb2d5_add_lumiblocknr_to_dids.py,sha256=tGPZuC-LReZ-wHgX3K8DJ2VAwU5VR0YUWA119-rVjGA,1530
|
|
318
|
+
rucio/db/sqla/migrate_repo/versions/ccdbcd48206e_add_did_type_column_index_on_did_meta_.py,sha256=uCLrXt3ZDKnPQKVMWjKwhFFwAFhTjzFbwkcoFBWfTJ4,2784
|
|
319
|
+
rucio/db/sqla/migrate_repo/versions/cebad904c4dd_new_payload_column_for_heartbeats.py,sha256=C4ZGGYQqjVuMTZVYai1aTq7FMWanlvkfsvp1Ke-rg2E,1747
|
|
320
|
+
rucio/db/sqla/migrate_repo/versions/d1189a09c6e0_oauth2_0_and_jwt_feature_support_adding_.py,sha256=MqPptwSVZa8i7btKnVllGWSlYq1LF59cVMriryyLAHU,9561
|
|
321
|
+
rucio/db/sqla/migrate_repo/versions/d23453595260_extend_request_state_for_preparer.py,sha256=MooqYW9tZiZNEn6Pm96F78v4QjknPn1NsHekMWJdmMY,4748
|
|
322
|
+
rucio/db/sqla/migrate_repo/versions/d6dceb1de2d_added_purge_column_to_rules.py,sha256=LXTilCPRbC2YVt4PADEwhAdjRpHQ5-xoDK8uyXi2b8k,1736
|
|
323
|
+
rucio/db/sqla/migrate_repo/versions/d6e2c3b2cf26_remove_third_party_copy_column_from_rse.py,sha256=nu4MmKHoQOLHipsYNmvx6gjpatCVVt6NMSfOLa5q-3A,1594
|
|
324
|
+
rucio/db/sqla/migrate_repo/versions/d91002c5841_new_account_limits_table.py,sha256=-YSNk4mKVSn8bHge8wlLEUT-EEQk2nyFXmwT1CwxCFM,5263
|
|
325
|
+
rucio/db/sqla/migrate_repo/versions/e138c364ebd0_extending_columns_for_filter_and_.py,sha256=KxHzJs2KzrpzRwFeoz57GCL0vscJgNKSw0lyA38EZuQ,2429
|
|
326
|
+
rucio/db/sqla/migrate_repo/versions/e59300c8b179_support_for_archive.py,sha256=6mT-zwYp4n4fspynhkm0GwrqmXk6wn9XlvtEOwO80OA,4865
|
|
327
|
+
rucio/db/sqla/migrate_repo/versions/f1b14a8c2ac1_postgres_use_check_constraints.py,sha256=G2k7Qs_2ZWBSWLWDlhz29Qm1rNNNL_e-H3-0UBSe68Q,897
|
|
328
|
+
rucio/db/sqla/migrate_repo/versions/f41ffe206f37_oracle_global_temporary_tables.py,sha256=XQ_SAyvgxs7qLogDrNAKz-F33-8-SjtP0x9sGM_0B_w,2947
|
|
329
|
+
rucio/db/sqla/migrate_repo/versions/f85a2962b021_adding_transfertool_column_to_requests_.py,sha256=jP2Z6bK3440KEIJD2z6Y3GIucxXQwt4gLW_HCAcQkM0,1949
|
|
330
|
+
rucio/db/sqla/migrate_repo/versions/fa7a7d78b602_increase_refresh_token_size.py,sha256=Ag0EDGJVqXUad_dnDTUu4CuZ5K-GoncnAttGng5bd4M,1617
|
|
331
|
+
rucio/db/sqla/migrate_repo/versions/fb28a95fe288_add_replicas_rse_id_tombstone_idx.py,sha256=pRiOBSzntVdAQTuba7emFZ-HgFI0uZLAoZUmKBFbbo0,1110
|
|
332
|
+
rucio/db/sqla/migrate_repo/versions/fe1a65b176c9_set_third_party_copy_read_and_write_.py,sha256=ax1wpzHyCBVb42fZTiPplcB7XiI7MgdNxuvfQFwpIXw,1896
|
|
333
|
+
rucio/db/sqla/migrate_repo/versions/fe8ea2fa9788_added_third_party_copy_column_to_rse_.py,sha256=27lEJJERe1LwRZoHu3gw-Lsiiu_2W2lYKR_bzNOEitQ,1599
|
|
334
|
+
rucio/gateway/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
335
|
+
rucio/gateway/account.py,sha256=LhEw58PVs-njeEBZzWdoZnslDj41p4WYT7AnrdwyblY,10384
|
|
336
|
+
rucio/gateway/account_limit.py,sha256=8IVsnDZONlMeyXkhHjWFLIpj8lwN4aPUTSG6xzJMHGc,11438
|
|
337
|
+
rucio/gateway/authentication.py,sha256=ejhCcAcpD9TG86356G4sd8v6sMzIBmXfZ533XVufEUg,13926
|
|
338
|
+
rucio/gateway/config.py,sha256=mknHpSwxOyghmKO1iSx8RKx8QpsZEjdm0YoTZV-3wlE,9089
|
|
339
|
+
rucio/gateway/credential.py,sha256=U6PR2bFIB3nrVpGTW2H0NSCmNLXkPOevvoT2V6xb_MA,3078
|
|
340
|
+
rucio/gateway/did.py,sha256=nOGtpFfQgkofrkRNkcT0JPbGmnaK5JKfaL5WXx4kDrU,31848
|
|
341
|
+
rucio/gateway/dirac.py,sha256=DuVaPM6ss95ggdanUUtrpQ87ZZ2aAjaGhigFDYwbpDo,3383
|
|
342
|
+
rucio/gateway/exporter.py,sha256=lCn45ODiiXX8LloYsWnb3J6Umv0_XDbUwXM8OuihuRA,2152
|
|
343
|
+
rucio/gateway/heartbeat.py,sha256=aszG0IRvsWYZzZJJkYmqGvwgcv58qcikQoDE54rBxso,2889
|
|
344
|
+
rucio/gateway/identity.py,sha256=42wg1tLJ8lTzbNYlToLybrloIoqZdFguq50mLSEZB0I,7363
|
|
345
|
+
rucio/gateway/importer.py,sha256=sbeIdonN68yKJjVEBMDuALfTDCZAvR91Zw4TawdgfOk,1776
|
|
346
|
+
rucio/gateway/lifetime_exception.py,sha256=joFiTQjhg6OEhB6N_p4XsETL-qtjNYS1y0ll3RSqdxA,4157
|
|
347
|
+
rucio/gateway/lock.py,sha256=l99ZjjWTfYFLi0LLsz2Lx_Wait-6GhCoorV1nsAoACA,4991
|
|
348
|
+
rucio/gateway/meta_conventions.py,sha256=CzIw0naAvc4uf9Y0W6EZxxdPMLEf2YH2mnCr9jST-Nw,3619
|
|
349
|
+
rucio/gateway/permission.py,sha256=srEnr9iUCbnPwxG9HxJWelFsP5O2zde6weJDb9I-oX4,2727
|
|
350
|
+
rucio/gateway/quarantined_replica.py,sha256=EzxxG2hUszZZxKY2hfdpOTd6Sv340B9cNAimhvTzmto,2668
|
|
351
|
+
rucio/gateway/replica.py,sha256=btpUdNJzr4CgwfqL0TSyJW00y9KyI1l3lmdLhOz3xQw,22597
|
|
352
|
+
rucio/gateway/request.py,sha256=3U3-YaCQBxNmyMvP5icpWg_pZulPIjlTRivW3j5hvg8,11880
|
|
353
|
+
rucio/gateway/rse.py,sha256=fBqST43LmIWa83u46hGfTBCbEAQe96dwMTpnYt7pyYE,23657
|
|
354
|
+
rucio/gateway/rule.py,sha256=Tx2dTwYB-GA2ISuA03eV0IpapUKgFTAb4yEtWwYUaEg,17147
|
|
355
|
+
rucio/gateway/scope.py,sha256=8XoTfFWUwkNL8suctl3iDnG4hgFynnKUh26f3EIKJs0,3216
|
|
356
|
+
rucio/gateway/subscription.py,sha256=5MdLraixaVEHRzj71ZVk5DZ27qiOdAvCz8hthRBmrPE,10699
|
|
357
|
+
rucio/gateway/vo.py,sha256=Pe4Eiom9OJhQ0m43nfmCJa03rf4MwDlGkm9b9H_b750,4821
|
|
358
|
+
rucio/rse/__init__.py,sha256=s04kzZtmEX0XMbkHO_-fW89W1ciPPLtQo1mHpylqA5I,3303
|
|
359
|
+
rucio/rse/rsemanager.py,sha256=KNHRZlT49aSPTffFObdTmeBkz9DTA_cBbpAjZ7mI_Qo,37692
|
|
360
|
+
rucio/rse/protocols/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
361
|
+
rucio/rse/protocols/bittorrent.py,sha256=GWmOda5PFdkET_j2pXZESin3w9jMyC4AO3jBqyMW4-w,7199
|
|
362
|
+
rucio/rse/protocols/cache.py,sha256=eFFHGiOBOuCGAjXA-_oAfkuUe8JDn2vcdogDtWoflfE,4603
|
|
363
|
+
rucio/rse/protocols/dummy.py,sha256=T_StCBkoZEdBpEYcRuDSsriSwKK27fxQ49hE6S28HKg,4225
|
|
364
|
+
rucio/rse/protocols/gfal.py,sha256=9Q3qdEruxb4G4RbqJHDHbsM3o37Iz4UBbbnN0dWtXcs,29100
|
|
365
|
+
rucio/rse/protocols/globus.py,sha256=NqCGiv7voqj0fZG4nLLuDocL8hZIjpr3BEGZcCMQP5k,9730
|
|
366
|
+
rucio/rse/protocols/gsiftp.py,sha256=AescAZ0rjtmNwP_6zSYBqBHPdwLHPwcGenSKn4xrlOM,3411
|
|
367
|
+
rucio/rse/protocols/http_cache.py,sha256=WYIl6tsuZJ--EvJNdVbaP8rbaqc1TQQAu0IrglBCkOQ,2975
|
|
368
|
+
rucio/rse/protocols/mock.py,sha256=yZDK_xgC7aV9sXrbVsWOliQPS8i0SpsSFigDGy32NOk,4495
|
|
369
|
+
rucio/rse/protocols/ngarc.py,sha256=zrYMtuqRKMcK_ukXu11NZSoTYfgmiwJqyctMU1YVCl8,7224
|
|
370
|
+
rucio/rse/protocols/posix.py,sha256=CjY1zDh3yM89PsLO9KYLQkEEHaBDGA81fGFzFO3sn7o,10414
|
|
371
|
+
rucio/rse/protocols/protocol.py,sha256=2l4ltnzzvqRtw_56u5tIGWtcS2uE_BXz5UDgn5v3-Ws,24911
|
|
372
|
+
rucio/rse/protocols/rclone.py,sha256=M82Qz_cqcDRvk3_TqxcuWTDB7KWUdykxR-KMMN0chZ0,15260
|
|
373
|
+
rucio/rse/protocols/rfio.py,sha256=PB3wW36_Eos7q1-DEX3WsektFeulnbf4OCB8ZPnY4fo,5501
|
|
374
|
+
rucio/rse/protocols/srm.py,sha256=GLij-YCb4uyTijXtFvjktdrOvzMaMVd93ujdbSf5pQ8,14689
|
|
375
|
+
rucio/rse/protocols/ssh.py,sha256=lQ2j_DEKtivoyQqhQhLqpeVvbGD_iF1kvtlAdRm7F-U,17473
|
|
376
|
+
rucio/rse/protocols/storm.py,sha256=1eR1gQe2VcNx_hMJUxA4XXvX0WWgqDd6oI_DkKW4r8Q,8141
|
|
377
|
+
rucio/rse/protocols/webdav.py,sha256=rPmcTB-yjnFJ322J8peliX8EU-696TCg-nG4iV8mTNM,22448
|
|
378
|
+
rucio/rse/protocols/xrootd.py,sha256=0nxVjw_Ab7tauoHsoIV_0A2jGlURZoPYu9dilsgwGpA,12571
|
|
379
|
+
rucio/tests/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
380
|
+
rucio/tests/common.py,sha256=6XzuGHa5483DWxJOSAZSqHzmzFNyKss5fyfqpjfVFj8,8907
|
|
381
|
+
rucio/tests/common_server.py,sha256=9FS5Uz-5yCYsdZ0y3X85ES8SRrXT5MsW3v1ZZoDF0tU,5045
|
|
382
|
+
rucio/transfertool/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
383
|
+
rucio/transfertool/bittorrent.py,sha256=am_u0oJ-cYZQ-zlDNojW993ZO2FnLyKdcnqDaTVYM6Y,8342
|
|
384
|
+
rucio/transfertool/bittorrent_driver.py,sha256=d7Tt1Yfic6chHz-SIsJQjRRoexGCn1UnFG2QEf7yco8,1705
|
|
385
|
+
rucio/transfertool/bittorrent_driver_qbittorrent.py,sha256=yvvExvyDqLSkE2kpvLslM1TVzEO_t_HATpaNXGJu5zE,4968
|
|
386
|
+
rucio/transfertool/fts3.py,sha256=-947WoR8VJJnwK2ljfNI1X2wsVS6jPcQAJ-STeHQAOM,78054
|
|
387
|
+
rucio/transfertool/fts3_plugins.py,sha256=ZoSCjpr-Htfv58iSZYlyMSM1kbpaGi5j-asaX78lgHc,5891
|
|
388
|
+
rucio/transfertool/globus.py,sha256=JgkkbgBQdmsloGsaAeGm5B_yUQDNabDiZb1hie6teT8,7716
|
|
389
|
+
rucio/transfertool/globus_library.py,sha256=SA2ryvmxieXjQ8L_UcUFILJ26pySzmNMCkokxbWDcI0,8411
|
|
390
|
+
rucio/transfertool/mock.py,sha256=RVMBZoSNBT9Kv0k4K_2Et_3zMS4CLBjU1xr46NRPGTk,3413
|
|
391
|
+
rucio/transfertool/transfertool.py,sha256=NiVT9HcXkYVRyh7E496qB6w6gZkSJUp0V02Ig1bGwgw,8506
|
|
392
|
+
rucio/web/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
393
|
+
rucio/web/rest/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
394
|
+
rucio/web/rest/main.py,sha256=3G9Ilt9b9S4O9XhL3zNRVyiWphPXqr8vqx7UQo36hMI,725
|
|
395
|
+
rucio/web/rest/metrics.py,sha256=kW_0e5PaD17V9wb2Aca29YPASmw4g8At2-fnPbXLHSA,1016
|
|
396
|
+
rucio/web/rest/ping.py,sha256=35YpZV7fW1MXz81Di1Wm4YXlq90TMrrda2l3QJy3s4k,1010
|
|
397
|
+
rucio/web/rest/flaskapi/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
398
|
+
rucio/web/rest/flaskapi/authenticated_bp.py,sha256=Q5yRLRAfu091GVaeiXKhKd5FNdA8DlClXWDv8562TW8,999
|
|
399
|
+
rucio/web/rest/flaskapi/v1/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
400
|
+
rucio/web/rest/flaskapi/v1/accountlimits.py,sha256=LuqFEjEJ-o_9N9xEkysymnhjG0Z6mSWNKvZ0-AsGg_U,8080
|
|
401
|
+
rucio/web/rest/flaskapi/v1/accounts.py,sha256=CfQ-sZbN7Jk5Z4quoEmvJW6Yo2BaShNDMeyzBdEkcZs,38194
|
|
402
|
+
rucio/web/rest/flaskapi/v1/archives.py,sha256=Q9j32sRKAtdxeax5HOEjAyWdX9C5oeNWmdNnIfgFcuE,3534
|
|
403
|
+
rucio/web/rest/flaskapi/v1/auth.py,sha256=QEyQaiNFajdkMIaKNdmPAubcrsfbIK3DV3TzDiz1GUc,62417
|
|
404
|
+
rucio/web/rest/flaskapi/v1/common.py,sha256=pfP51XHzgI1lU9ToxQw9rU1ZGkcLAlTxMEdjq99S6_c,16962
|
|
405
|
+
rucio/web/rest/flaskapi/v1/config.py,sha256=D2FY0lz4u0f7tfnqEvJ3kq7Z9Vp46KlAJ68nPeolYMw,10147
|
|
406
|
+
rucio/web/rest/flaskapi/v1/credentials.py,sha256=gsy78VqZ_joLRHJGd_UUGhKtMSl90hFd4LlyYM_Xo20,7717
|
|
407
|
+
rucio/web/rest/flaskapi/v1/dids.py,sha256=KeijTUJoJwy0rLas_TRpeJKYmMV7Zp_yQB1VQZY03Jg,81181
|
|
408
|
+
rucio/web/rest/flaskapi/v1/dirac.py,sha256=jTFotoHqnDCs__XT0gns5YKhrqaazV1qf-8W4RZfYN4,4710
|
|
409
|
+
rucio/web/rest/flaskapi/v1/export.py,sha256=Kjh8qIODIzgjz-6jiC2aOTRrC2oHR4dTJ0MOabjIiB4,2660
|
|
410
|
+
rucio/web/rest/flaskapi/v1/heartbeats.py,sha256=T3G204l6ASvUYk5ZDK8sUCVwzjYAeLcVgQYbckELIsY,4624
|
|
411
|
+
rucio/web/rest/flaskapi/v1/identities.py,sha256=gdsDmWRdgVevy7kmbIgg496QcvYD8CFdytE5wWIETLs,7898
|
|
412
|
+
rucio/web/rest/flaskapi/v1/import.py,sha256=wqsges6E-n2B5uZJxjqmOyrhfSQhEPD9GmBF9PLQetE,5263
|
|
413
|
+
rucio/web/rest/flaskapi/v1/lifetime_exceptions.py,sha256=ms-5ze74UErRIO5Z2_xd1H_KF7wYGtIDNVVeft7OqCk,12013
|
|
414
|
+
rucio/web/rest/flaskapi/v1/locks.py,sha256=0rXKZV0Kabhf1Q35HDnhqzHfzHI0JTXavqKLYATGAW8,12994
|
|
415
|
+
rucio/web/rest/flaskapi/v1/main.py,sha256=tXOBicArjXcdmYXFIlMuMqtbrcK1C2r22cwtSu1mJmo,2860
|
|
416
|
+
rucio/web/rest/flaskapi/v1/meta_conventions.py,sha256=8rG0MV8Uk8_k5JuoXdWVMwmaVZXYSTGPiAbOzT0BXBI,7789
|
|
417
|
+
rucio/web/rest/flaskapi/v1/metrics.py,sha256=-tCHboUu_5hI87G_pZswhpY6koTwu6WudgW4RixOnIg,1250
|
|
418
|
+
rucio/web/rest/flaskapi/v1/nongrid_traces.py,sha256=qJdu9ZjGg1aLHxQUSjMi5TJV_dN1g4BCtTA4Wet1gcY,3130
|
|
419
|
+
rucio/web/rest/flaskapi/v1/ping.py,sha256=m3ahSzver84xECWnteEWIVuH8WSNZAs_QRZ8gY_UVZA,3095
|
|
420
|
+
rucio/web/rest/flaskapi/v1/redirect.py,sha256=GnLqlGHQSU0B8tFRLKpbNS2I2kQRP3RDRJhIJeo-M8Q,13426
|
|
421
|
+
rucio/web/rest/flaskapi/v1/replicas.py,sha256=eH2-yF47nqP5MijQNcc3WEGUYPYJQuMBr2-1D2KIL6k,72779
|
|
422
|
+
rucio/web/rest/flaskapi/v1/requests.py,sha256=GK1PdEmA2ceztrI_RPv0XXa5Xh5URSS44EDHNojKADY,41942
|
|
423
|
+
rucio/web/rest/flaskapi/v1/rses.py,sha256=xDDls2SkEBLNn9qJPR-fGJhOEUL_bbsgRQNNqiUPTKM,81956
|
|
424
|
+
rucio/web/rest/flaskapi/v1/rules.py,sha256=GtS_bi5RLsWrKWwMupyFywRiRXxTJTGp6gWa8O0KRmY,32197
|
|
425
|
+
rucio/web/rest/flaskapi/v1/scopes.py,sha256=og11d0hDr76TxPK67RLxK125a3qW8rdqrrL_1QBeH3Q,5072
|
|
426
|
+
rucio/web/rest/flaskapi/v1/subscriptions.py,sha256=uAJz5NOZpWAqlPoaaShZqtm-xXkvizvzVZN1mp4lqv8,24678
|
|
427
|
+
rucio/web/rest/flaskapi/v1/traces.py,sha256=mmRpYUS2n74hj01wTPXCqlk2_rTcocYwLRwprHS5Bwk,3212
|
|
428
|
+
rucio/web/rest/flaskapi/v1/types.py,sha256=kY-nml_En9zwkKu9TEYwEZGaF2NJ09gN2IUY7h9rp68,799
|
|
429
|
+
rucio/web/rest/flaskapi/v1/vos.py,sha256=mJy5hYmXW7SvhoJ9VBHSjVFx0FDANTIMCXCS28zk7P0,9158
|
|
430
|
+
rucio/web/rest/flaskapi/v1/templates/auth_crash.html,sha256=enhyVliQHlblgCEHvBzAlLxymFySlc42tk87vfWdBo0,2254
|
|
431
|
+
rucio/web/rest/flaskapi/v1/templates/auth_granted.html,sha256=SDsrTCQhwklLu3mDtSTUATnK16QG1T-eWDTDjmv8bn4,2139
|
|
432
|
+
rucio-35.8.0.data/data/rucio/requirements.server.txt,sha256=kyrRsiM94BOpaAPn4YIJ098c2zDNnF-lTpH_hnKRQgo,5357
|
|
433
|
+
rucio-35.8.0.data/data/rucio/etc/alembic.ini.template,sha256=ERvYSCWTpMlhcGdt3XsQNAtxl_JuYF4hwRrpUCC0I7g,1764
|
|
434
|
+
rucio-35.8.0.data/data/rucio/etc/alembic_offline.ini.template,sha256=PwoOSvkt2B3YTN08Cq-JEUshQ9_-PR6ntNfmpsYSNgc,1922
|
|
435
|
+
rucio-35.8.0.data/data/rucio/etc/globus-config.yml.template,sha256=ADOplXW10bO5KZVYRavwKgNaDR0VmdJ3gVbINeqoSIA,96
|
|
436
|
+
rucio-35.8.0.data/data/rucio/etc/ldap.cfg.template,sha256=2n-Exv81toCDZ6OzuNfMa71OoiLTdCSjWhkzCfSN3eM,806
|
|
437
|
+
rucio-35.8.0.data/data/rucio/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
|
|
438
|
+
rucio-35.8.0.data/data/rucio/etc/rucio.cfg.atlas.client.template,sha256=O24QKo-0OX4Clj7Bp2Bv9W-b0NtLkyYg3jNNpz_alr0,1311
|
|
439
|
+
rucio-35.8.0.data/data/rucio/etc/rucio.cfg.template,sha256=z1s8B-_C-gKsPM8ZtCOZDTKLd0Emj8IYgLBz4B9dCw4,8534
|
|
440
|
+
rucio-35.8.0.data/data/rucio/etc/rucio_multi_vo.cfg.template,sha256=bO4e7r5o_d98cc2mff4Lju7KEMtUZd-eep0L1Dlxwvg,7477
|
|
441
|
+
rucio-35.8.0.data/data/rucio/etc/mail_templates/rule_approval_request.tmpl,sha256=MTrB-IQEFE6TJnkwXjLxlUIc4afHmmrdQDC1S5og_dM,1210
|
|
442
|
+
rucio-35.8.0.data/data/rucio/etc/mail_templates/rule_approved_admin.tmpl,sha256=HxYNm7EKG9cMNkwUNPgZUC7o0Q9-DTINh1JtGtHOYUg,105
|
|
443
|
+
rucio-35.8.0.data/data/rucio/etc/mail_templates/rule_approved_user.tmpl,sha256=R4rssZ2hE8wcYPmAyc-UDpO5SPhMLZGNuYz6pvLjPVc,499
|
|
444
|
+
rucio-35.8.0.data/data/rucio/etc/mail_templates/rule_denied_admin.tmpl,sha256=feXJ3pZynlESBuPoe_y8amB84UQnLaP6SHtRk3cn7ZA,120
|
|
445
|
+
rucio-35.8.0.data/data/rucio/etc/mail_templates/rule_denied_user.tmpl,sha256=O054th_sVqZTFUeC3Gg_Qe8CrXQb-bxJhMaO48VMzzU,493
|
|
446
|
+
rucio-35.8.0.data/data/rucio/etc/mail_templates/rule_ok_notification.tmpl,sha256=EiT0KucfIKYnIN5XO9XawzZAJSVRYlza5sn8VloyBy4,546
|
|
447
|
+
rucio-35.8.0.data/data/rucio/tools/bootstrap.py,sha256=iI0Ue2mrRJdjFITm93DLHUBxDb_yfEoMUDpgO5Bqkhw,1259
|
|
448
|
+
rucio-35.8.0.data/data/rucio/tools/merge_rucio_configs.py,sha256=u62K1EcCGydM5nZA30zhlqWo4EX5N87b_MDkx5YfzVI,6163
|
|
449
|
+
rucio-35.8.0.data/data/rucio/tools/reset_database.py,sha256=ctvzWtRCQT69GNvmjDxtuSq8XM0B7VTdC0y-ALnHQsI,1351
|
|
450
|
+
rucio-35.8.0.data/scripts/rucio,sha256=Bv77AQpk6EuHk1A4c91IgWdMZ1AzIBVvXA_9dZ0_PWk,128577
|
|
451
|
+
rucio-35.8.0.data/scripts/rucio-abacus-account,sha256=C4ThueuI3gM3IVY9h1-T6xzkxFKMLmg2XTgSY7u7HXk,2806
|
|
452
|
+
rucio-35.8.0.data/scripts/rucio-abacus-collection-replica,sha256=HD2acGu8xBDAsKGCA7oLQvcY5SdT1mIQhSrREDV2n_M,1809
|
|
453
|
+
rucio-35.8.0.data/scripts/rucio-abacus-rse,sha256=3ws35qgLNh6FePNJMbPB2GDMvXw6rHGuxh5t8qVByNs,2553
|
|
454
|
+
rucio-35.8.0.data/scripts/rucio-admin,sha256=OzbgXHRdrHcxN1LIjMIfPU5GcaVPu3OzPZpcfyMONmU,133614
|
|
455
|
+
rucio-35.8.0.data/scripts/rucio-atropos,sha256=Mt37APqBRX-wsyB1VLAC5YOF8zrYezU-tMbLPPsPYzc,3171
|
|
456
|
+
rucio-35.8.0.data/scripts/rucio-auditor,sha256=5oVc_79K0V4JltR6YnhJxjmimZD0NcELLq7LuaBWm7c,6117
|
|
457
|
+
rucio-35.8.0.data/scripts/rucio-automatix,sha256=qAolD-WjIswTKMR5D-To6WB9qKlHZLWwoj9mVocuYvg,1996
|
|
458
|
+
rucio-35.8.0.data/scripts/rucio-bb8,sha256=TD8P3cMiDB_knZKZcGTQsy8aA7nPQXMC1TNPCyXrsSg,3089
|
|
459
|
+
rucio-35.8.0.data/scripts/rucio-c3po,sha256=FOc8PPRLNF9kD1JxCYUVSdAH-bQA58cFlnou3FeRhWc,6086
|
|
460
|
+
rucio-35.8.0.data/scripts/rucio-cache-client,sha256=R2CMCUZl5JFDO71mxETxoBo4nQudhssl49GziBpLK8A,5046
|
|
461
|
+
rucio-35.8.0.data/scripts/rucio-cache-consumer,sha256=5mCXRQWwAww3aabTMQh-U9HgHFkCJf3VpTHdk9R-rsU,1348
|
|
462
|
+
rucio-35.8.0.data/scripts/rucio-conveyor-finisher,sha256=mAexgdlj41UOwIQDZ5POU8gTRMuKzaOqhEww6cRV2rI,2333
|
|
463
|
+
rucio-35.8.0.data/scripts/rucio-conveyor-poller,sha256=z2C17x3n_eKdDrL1w1ePJpslkbOw2UMTh5BaOw-__Es,2825
|
|
464
|
+
rucio-35.8.0.data/scripts/rucio-conveyor-preparer,sha256=jlaBQbN8f081ekInQxn3QcNvrQQqedmdjQ6PeEp9JeU,1746
|
|
465
|
+
rucio-35.8.0.data/scripts/rucio-conveyor-receiver,sha256=gW8lsPn-1Bs1cMt5SOE8X3QwE5R1vfQYNt_1jPVPMfw,1668
|
|
466
|
+
rucio-35.8.0.data/scripts/rucio-conveyor-stager,sha256=AaFzBHTahrv5--H16lbpUlXc64hijLL_myakuJ0V-oI,3371
|
|
467
|
+
rucio-35.8.0.data/scripts/rucio-conveyor-submitter,sha256=IMENh4rK8w6KbjZaOD8UJEv5BHdiFDjhfsHmZZK-T80,6738
|
|
468
|
+
rucio-35.8.0.data/scripts/rucio-conveyor-throttler,sha256=HS0vqTtMlrwUlsVM8a6aSHu0Kh4qkj52A3rqYuBy7bg,3845
|
|
469
|
+
rucio-35.8.0.data/scripts/rucio-dark-reaper,sha256=GmQAUNmmJKJjeuY7jbQIHvrbdQWRJSlqojMF_6h8j2Y,2532
|
|
470
|
+
rucio-35.8.0.data/scripts/rucio-dumper,sha256=zGfdsamPIUxbnDFDPM6FtqR1d3FH1AdC0gtH1JeLaxU,6729
|
|
471
|
+
rucio-35.8.0.data/scripts/rucio-follower,sha256=sXVEogQcoH0IxLy5qO-cjly-aVPCJ7uVcVsZtfyd2Pk,1400
|
|
472
|
+
rucio-35.8.0.data/scripts/rucio-hermes,sha256=i238hHzuv9JNUUPHNcOjnFQSs6BpPmz88t8ZFgS2GxI,1973
|
|
473
|
+
rucio-35.8.0.data/scripts/rucio-judge-cleaner,sha256=AKF8Jz67xRjiInuex003AXxTnOwTN2DQN38RS9jkrLY,4635
|
|
474
|
+
rucio-35.8.0.data/scripts/rucio-judge-evaluator,sha256=JrWN2ZatnUig5iWM7Ku4nEspXBjaucOrc8Ic55_OCzc,7458
|
|
475
|
+
rucio-35.8.0.data/scripts/rucio-judge-injector,sha256=d6na_n4H7njpUmJQg2Gc4KlbgK0_xuW5vw3waLReLTQ,1657
|
|
476
|
+
rucio-35.8.0.data/scripts/rucio-judge-repairer,sha256=QHeBySAn1bYS17z5dTfq8o81uEUpqhGVUqe6KWZBVmQ,1661
|
|
477
|
+
rucio-35.8.0.data/scripts/rucio-kronos,sha256=tJaDw80HmbWVHIk1_N-AmzLu8sgiClk5m9E5jC8uZXo,1769
|
|
478
|
+
rucio-35.8.0.data/scripts/rucio-minos,sha256=R07ybCFqrUqKaZDbpOEqILJUYT37Q5nwjdcVdrQqFa0,2246
|
|
479
|
+
rucio-35.8.0.data/scripts/rucio-minos-temporary-expiration,sha256=BJenxlyfTsG8quvt7VW4Wm8tRJuQowzS0Xs2k2PFQag,1983
|
|
480
|
+
rucio-35.8.0.data/scripts/rucio-necromancer,sha256=6F0fra62byzsf-1xPBEv860oZNIp--mv6bVgzignzFU,5612
|
|
481
|
+
rucio-35.8.0.data/scripts/rucio-oauth-manager,sha256=qqFyI_L-bHg4R6a3OSgL_RsmosuODykX7HM-u0Mr-nY,2776
|
|
482
|
+
rucio-35.8.0.data/scripts/rucio-reaper,sha256=0xo_mnClswuOYmVChmSMUMooGimFeDfDrRqm3D5YWOY,4056
|
|
483
|
+
rucio-35.8.0.data/scripts/rucio-replica-recoverer,sha256=GOf1qc0QD5sbWXPwBP2uWyjSi3VPMXCnOXa85h45PV4,19002
|
|
484
|
+
rucio-35.8.0.data/scripts/rucio-rse-decommissioner,sha256=zXXTq1lPzoI5R012fGWrxXi9VcHZNIfB85EefwQN1kw,2337
|
|
485
|
+
rucio-35.8.0.data/scripts/rucio-storage-consistency-actions,sha256=Mb4GUO1kP7HdiCORhHkYfmfZIhJKp88RBr8TEC19HXo,3906
|
|
486
|
+
rucio-35.8.0.data/scripts/rucio-transmogrifier,sha256=e66Qo9VymoFsWIv4VrkqfnyxtxYjefC-qL6XOAkxJjU,3350
|
|
487
|
+
rucio-35.8.0.data/scripts/rucio-undertaker,sha256=HQ-irdSrsftrsS8NdVjGhxYlFE4hDVo9bh32jTwNCCc,2706
|
|
488
|
+
rucio-35.8.0.dist-info/licenses/AUTHORS.rst,sha256=aakReWi6XP3cIus05aE6qvfMOGJozW42LaRbfJV_QJY,4586
|
|
489
|
+
rucio-35.8.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
490
|
+
rucio-35.8.0.dist-info/METADATA,sha256=m_sYWiR1A0QiliU72BYvYSh3AklMbaKZdpvkBtEbp58,2475
|
|
491
|
+
rucio-35.8.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
492
|
+
rucio-35.8.0.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
|
|
493
|
+
rucio-35.8.0.dist-info/RECORD,,
|
|
@@ -65,6 +65,8 @@ Individual contributors to the source code
|
|
|
65
65
|
- Stefan Piperov <stefan.piperov@cern.ch>, 2021
|
|
66
66
|
- Jensen Zhang <hack@jensen-zhang.site>, 2022
|
|
67
67
|
- Aksel Lunde Aase <aksel.lunde.aase@gmail.com>, 2022
|
|
68
|
+
- Elena Gazzarrini <gazzarrini.elena@gmail.com>, 2022-2023
|
|
69
|
+
- Maximilian Linhoff, <maximilian.linhoff@tu-dortmund.de>, 2024
|
|
68
70
|
|
|
69
71
|
Organisations employing contributors
|
|
70
72
|
------------------------------------
|
|
@@ -92,3 +94,4 @@ Organisations employing contributors
|
|
|
92
94
|
- Imperial College London (UK)
|
|
93
95
|
- University of Chicago (USA)
|
|
94
96
|
- Purdue University (USA)
|
|
97
|
+
- TU Dortmund University (Germany)
|
rucio/api/temporary_did.py
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Copyright European Organization for Nuclear Research (CERN) since 2012
|
|
3
|
-
#
|
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
# you may not use this file except in compliance with the License.
|
|
6
|
-
# You may obtain a copy of the License at
|
|
7
|
-
#
|
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
#
|
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
# See the License for the specific language governing permissions and
|
|
14
|
-
# limitations under the License.
|
|
15
|
-
|
|
16
|
-
from typing import TYPE_CHECKING
|
|
17
|
-
|
|
18
|
-
from rucio.common.types import InternalAccount, InternalScope
|
|
19
|
-
from rucio.core import temporary_did
|
|
20
|
-
from rucio.core.rse import get_rse_id
|
|
21
|
-
from rucio.db.sqla.session import transactional_session
|
|
22
|
-
|
|
23
|
-
if TYPE_CHECKING:
|
|
24
|
-
from sqlalchemy.orm import Session
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
@transactional_session
|
|
28
|
-
def add_temporary_dids(dids, issuer, vo='def', *, session: "Session"):
|
|
29
|
-
"""
|
|
30
|
-
Bulk add temporary data identifiers.
|
|
31
|
-
|
|
32
|
-
:param dids: A list of dids.
|
|
33
|
-
:param issuer: The issuer account.
|
|
34
|
-
:param vo: The VO to act on.
|
|
35
|
-
:param session: The database session in use.
|
|
36
|
-
"""
|
|
37
|
-
for did in dids:
|
|
38
|
-
if 'rse' in did and 'rse_id' not in did:
|
|
39
|
-
rse_id = None
|
|
40
|
-
if did['rse'] is not None:
|
|
41
|
-
rse_id = get_rse_id(rse=did['rse'], vo=vo, session=session)
|
|
42
|
-
did['rse_id'] = rse_id
|
|
43
|
-
if 'scope' in did:
|
|
44
|
-
did['scope'] = InternalScope(did['scope'], vo=vo)
|
|
45
|
-
if 'parent_scope' in did:
|
|
46
|
-
did['parent_scope'] = InternalScope(did['parent_scope'], vo=vo)
|
|
47
|
-
|
|
48
|
-
issuer = InternalAccount(issuer, vo=vo)
|
|
49
|
-
return temporary_did.add_temporary_dids(dids=dids, account=issuer, session=session)
|