diff options
author | Alex Auvolat <alex@adnab.me> | 2023-05-04 11:49:23 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-06-09 16:23:37 +0200 |
commit | 511e07ecd489fa72040171fe908323873a57ac19 (patch) | |
tree | e4fe58d387f8cb3c913e4bfad8c1472151fc8d88 /src/model/s3/mpu_table.rs | |
parent | 4ea53dc75930d813b84b79c3427b194b6e664ce7 (diff) | |
download | garage-511e07ecd489fa72040171fe908323873a57ac19.tar.gz garage-511e07ecd489fa72040171fe908323873a57ac19.zip |
fix mpu counter (add missing workers) and report info at appropriate places
Diffstat (limited to 'src/model/s3/mpu_table.rs')
-rw-r--r-- | src/model/s3/mpu_table.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/s3/mpu_table.rs b/src/model/s3/mpu_table.rs index 7148be51..4764e8da 100644 --- a/src/model/s3/mpu_table.rs +++ b/src/model/s3/mpu_table.rs @@ -208,7 +208,7 @@ impl TableSchema for MultipartUploadTable { } impl CountedItem for MultipartUpload { - const COUNTER_TABLE_NAME: &'static str = "bucket_mpu_part_counter"; + const COUNTER_TABLE_NAME: &'static str = "bucket_mpu_counter"; // Partition key = bucket id type CP = Uuid; |