mirror of https://gitee.com/bigwinds/arangodb
Add a sensible error message.
This commit is contained in:
parent
5e7d5cb770
commit
6fa99b6b60
|
@ -65,6 +65,8 @@ void AgencyCallback::refetchAndUpdate(bool needToAcquireMutex) {
|
||||||
AgencyCommResult result = _agency.getValues(key);
|
AgencyCommResult result = _agency.getValues(key);
|
||||||
|
|
||||||
if (!result.successful()) {
|
if (!result.successful()) {
|
||||||
|
LOG(ERR) << "Callback getValues to agency was not successful: "
|
||||||
|
<< result.errorCode() << " " << result.errorMessage();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue