Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions data_store_service_client_closure.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,8 @@ void SyncBatchReadForArchiveCallback(void *data,
auto err_code = result.error_code();
if (err_code == remote::DataStoreError::KEY_NOT_FOUND)
{
LOG(ERROR) << "BatchReadForArchiveCallback, key not found: "
<< read_closure->Key();
// callback_data->SetErrorCode(
// static_cast<int>(txservice::CcErrorCode::DATA_STORE_ERR));
// assert(false);
LOG(INFO) << "BatchReadForArchiveCallback, key not found: "
<< read_closure->Key() << " , set as deleted";
std::string_view key_str = read_closure->Key();
uint64_t ts = 1U;
uint64_t ttl = 0U;
Expand Down