Skip to content

Commit

Permalink
Merge pull request #43920 from ClickHouse/fix-incorrect-exception-mes…
Browse files Browse the repository at this point in the history
…sage

Fix incorrect exception message
  • Loading branch information
davenger committed Dec 6, 2022
2 parents c5eb269 + 1361753 commit 87663d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IO/HTTPCommon.cpp
Expand Up @@ -334,7 +334,7 @@ std::string HTTPException::makeExceptionMessage(
"Received error from remote server {}. "
"HTTP status code: {} {}, "
"body: {}",
uri, http_status, reason, body);
uri, static_cast<int>(http_status), reason, body);
}

}

0 comments on commit 87663d3

Please sign in to comment.