Skip to content

Commit

Permalink
fix: compiler err
Browse files Browse the repository at this point in the history
  • Loading branch information
jcosentino11 committed Jun 21, 2024
1 parent 2d16651 commit 27ba441
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ CertSubscribeUpdateStatus CertificateUpdater::subscribeToUpdates(
}
} else if (responseType == RPC_ERROR) {
auto error = response.GetRpcError();
LOG_E(CERT_UPDATER_SUBJECT, "Cert updates RPC failure response: %s", error.StatusToString().c_str())
LOG_E(CERT_UPDATER_SUBJECT, "Cert updates RPC failure response: %s", error.StatusToString().c_str());
}
return CertSubscribeUpdateStatus::SUBSCRIBE_ERROR_FAILURE_RESPONSE;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ConfigurationSubscriber::subscribe_to_configuration_updates(std::unique_ptr<std:
return ConfigurationSubscribeStatus::SUBSCRIBE_ERROR_FAILURE_RESPONSE;
case RPC_ERROR:
LOG_E(CONFIG_SUBSCRIBER_SUBJECT, "Config updates RPC failure response: %s",
response.GetRpcError().StatusToString().c_str())
response.GetRpcError().StatusToString().c_str());
return ConfigurationSubscribeStatus::SUBSCRIBE_ERROR_FAILURE_RESPONSE;
default:
LOG_E(CONFIG_SUBSCRIBER_SUBJECT, "Subscribe failed with response type %d", response.GetResultType());
Expand Down

0 comments on commit 27ba441

Please sign in to comment.