Skip to content

Commit

Permalink
testme other log place
Browse files Browse the repository at this point in the history
  • Loading branch information
proller committed Feb 4, 2025
1 parent f6818bc commit d0dfc4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cloud/filestore/libs/diagnostics/profile_log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void TProfileLog::Stop()
void TProfileLog::Write(TRecord record)
{
// TODO(proller): Remove debug after bug fix
STORAGE_VERIFY_DEBUG_C(record.FileSystemId.empty(), "", "", "Missing filesystem id in profile log");
//STORAGE_VERIFY_DEBUG_C(record.FileSystemId.empty(), "", "", "Missing filesystem id in profile log");

Records.Enqueue(std::move(record));
}
Expand Down
3 changes: 3 additions & 0 deletions cloud/filestore/libs/vfs_fuse/fs_impl_data.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "fs_impl.h"
#include "cloud/storage/core/libs/common/verify.h"

#include <cloud/filestore/libs/diagnostics/critical_events.h>
#include <cloud/filestore/libs/diagnostics/profile_log.h>
Expand Down Expand Up @@ -468,6 +469,8 @@ void TFileSystem::Flush(

const auto& response = future.GetValue();

STORAGE_VERIFY_DEBUG_C(self->Config->GetFileSystemId().empty(), "", "", "Missing filesystem id in profile log for Flush request");

FinalizeProfileLogRequestInfo(
std::move(requestInfo),
Now(),
Expand Down

0 comments on commit d0dfc4b

Please sign in to comment.