Skip to content

Commit

Permalink
fix: Solve rebase conflicts
Browse files Browse the repository at this point in the history
Signed-off-by: Baldor <[email protected]>
  • Loading branch information
ictus4u committed Feb 6, 2025
1 parent 9e13eee commit 6047ada
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/chunkserver/chunkserver-common/chunk_trash_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#include "chunk_trash_manager.h"
#include "chunk_trash_manager_impl.h"
#include "common/cfg.h"
#include "config/cfg.h"

u_short ChunkTrashManager::isEnabled = 1;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "slogger/slogger.h"

#include "chunk_trash_manager_impl.h"
#include "common/cfg.h"
#include "config/cfg.h"

namespace fs = std::filesystem;

Expand Down
6 changes: 3 additions & 3 deletions src/chunkserver/chunkserver-common/cmr_disk_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ class MockChunk : public FDChunk {
MockChunk(const std::filesystem::path &metaFile, const
std::filesystem::path &dataFile) : FDChunk(0,
ChunkPartType(
detail::SliceType::kECFirst),
detail::SliceType::kECFirst),
ChunkState::Available),
metaFile_(metaFile.string()),
dataFile_(dataFile.string()) {}

std::string metaFilename() const override { return metaFile_; }
std::string fullMetaFilename() const override { return metaFile_; }

std::string dataFilename() const override { return dataFile_; }
std::string fullDataFilename() const override { return dataFile_; }

// Implement all the pure virtual methods with simple stubs
std::string generateDataFilenameForVersion(
Expand Down

0 comments on commit 6047ada

Please sign in to comment.