Skip to content

Commit

Permalink
Merge branch 'tickets/DM-42491'
Browse files Browse the repository at this point in the history
  • Loading branch information
iagaponenko committed Jan 16, 2024
2 parents a166c1e + 248d8ad commit b3fdc96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/replica/qserv/QservMgtRequest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,10 @@ void QservMgtRequest::_processResponse() {
}
break;
case http::AsyncReq::State::FAILED:
finish(lock, ExtendedState::SERVER_ERROR,
_httpRequest->errorMessage() + ", code: " + to_string(_httpRequest->responseCode()));
finish(lock, ExtendedState::SERVER_ERROR, _httpRequest->errorMessage());
break;
case http::AsyncReq::State::BODY_LIMIT_ERROR:
// The response code posted by the called service is available in this failure mode.
finish(lock, ExtendedState::BODY_LIMIT_ERROR,
_httpRequest->errorMessage() + ", code: " + to_string(_httpRequest->responseCode()));
break;
Expand Down

0 comments on commit b3fdc96

Please sign in to comment.