Skip to content

Commit 48c484d

Browse files
committed
fix ci
1 parent b870c38 commit 48c484d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

mooncake-store/include/replica.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#include "allocator.h"
1414
#include "master_metric_manager.h"
1515

16-
1716
namespace mooncake {
1817

1918
/**
@@ -97,11 +96,11 @@ struct DiskReplicaData {
9796
// Automatic update allocated_file_size via RAII
9897
DiskReplicaData(std::string file_path, uint64_t object_size)
9998
: file_path(std::move(file_path)), object_size(object_size) {
100-
MasterMetricManager::instance().inc_allocated_file_size(object_size);
99+
MasterMetricManager::instance().inc_allocated_file_size(object_size);
101100
}
102101

103102
~DiskReplicaData() {
104-
MasterMetricManager::instance().dec_allocated_file_size(object_size);
103+
MasterMetricManager::instance().dec_allocated_file_size(object_size);
105104
}
106105
};
107106

0 commit comments

Comments
 (0)