Skip to content

Commit

Permalink
Missing namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd committed Sep 29, 2023
1 parent da8686f commit 647007e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/file_backend/file_blob_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ nlohmann::json FileHomeObject::_read_blob_header(int shard_fd, blob_id_t& blob_i
try {
if (0 <= err) return nlohmann::json::parse(j_str);
LOGE("failed to read: {}", strerror(errno));
} catch (nlohmann::exception const&) { LOGT("no blob @ [blob_id={}]", blob_id); }
} catch (nlohmann::json::exception const&) { LOGT("no blob @ [blob_id={}]", blob_id); }
return nlohmann::json{};
}

Expand Down

0 comments on commit 647007e

Please sign in to comment.