Skip to content
This repository has been archived by the owner on Apr 17, 2019. It is now read-only.

Fix thread safe issue in status streaming #1991

Merged
merged 1 commit into from
Dec 26, 2018
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
2 changes: 1 addition & 1 deletion irohad/torii/impl/command_service_transport_grpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ namespace torii {

auto hash = shared_model::crypto::Hash(request->tx_hash());

static auto client_id_format = boost::format("Peer: '%s', %s");
auto client_id_format = boost::format("Peer: '%s', %s");
std::string client_id =
(client_id_format % context->peer() % hash.toString()).str();

Expand Down