mirror of
https://github.com/rustfs/rustfs.git
synced 2026-09-05 19:55:37 +00:00
6e26769265
* fix(ecstore): fence transitioned object cleanup * fix(ecstore): address ILM recovery review findings * fix(ecstore): complete crash-safe tier cleanup recovery * test(ecstore): avoid typo false positive * fix(ecstore): stabilize decommission error buckets * fix(ecstore): stabilize transition delete validation * fix(ecstore): resume authorized tier delete dispatch * fix(ecstore): satisfy feature clippy
35 lines
1.1 KiB
Rust
35 lines
1.1 KiB
Rust
// Copyright 2024 RustFS Team
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#[cfg(any(test, feature = "test-util"))]
|
|
pub mod test_util;
|
|
pub mod tier;
|
|
pub mod tier_admin;
|
|
pub mod tier_config;
|
|
pub mod tier_gen;
|
|
pub mod tier_handlers;
|
|
pub(crate) mod tier_mutation_intent;
|
|
pub mod tier_mutation_peer;
|
|
pub mod warm_backend;
|
|
pub mod warm_backend_aliyun;
|
|
pub mod warm_backend_azure;
|
|
pub mod warm_backend_gcs;
|
|
pub mod warm_backend_huaweicloud;
|
|
pub mod warm_backend_minio;
|
|
pub mod warm_backend_r2;
|
|
pub mod warm_backend_rustfs;
|
|
pub mod warm_backend_s3;
|
|
pub mod warm_backend_tencent;
|
|
pub mod warm_backend_wasabi;
|