Skip to content

Commit

Permalink
MGM: Fix fsck app tag so that we don't get double eos/ prefix appende…
Browse files Browse the repository at this point in the history
…d to it
  • Loading branch information
esindril committed Dec 12, 2024
1 parent d38b39e commit b82bbdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mgm/fsck/FsckEntry.cc
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ FsckEntry::RepairMgmXsSzDiff()
for (auto bad_fsid : bad_fsids) {
// Trigger an fsck repair job (much like a drain job) doing a TPC
auto repair_job = mRepairFactory(mFid, bad_fsid, 0, bad_fsids,
bad_fsids, true, "eos/fsck", false);
bad_fsids, true, "fsck", false);
repair_job->DoIt();

if (repair_job->GetStatus() != FsckRepairJob::Status::OK) {
Expand Down Expand Up @@ -1023,7 +1023,7 @@ FsckEntry::RepairReplicaInconsistencies()
// similar to adjust replica
eos::common::FileSystem::fsid_t good_fsid = mMgmFmd.locations(0);
auto repair_job = mRepairFactory(mFid, good_fsid, 0, {}, to_drop,
false, "eos/fsck", false);
false, "fsck", false);
repair_job->DoIt();

if (repair_job->GetStatus() != FsckRepairJob::Status::OK) {
Expand Down

0 comments on commit b82bbdd

Please sign in to comment.