Browse Source
Merge pull request #4856 from bunnei/webservice-socket-error
web_service: web_backend: Handle socket errors with GenericRequest.
pull/15/merge
LC
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
11 additions and
0 deletions
-
src/web_service/web_backend.cpp
|
|
@ -65,6 +65,17 @@ struct Client::Impl { |
|
|
if (cli == nullptr) { |
|
|
if (cli == nullptr) { |
|
|
cli = std::make_unique<httplib::Client>(host.c_str()); |
|
|
cli = std::make_unique<httplib::Client>(host.c_str()); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (!cli->is_valid()) { |
|
|
|
|
|
LOG_ERROR(WebService, "Client is invalid, skipping request!"); |
|
|
|
|
|
return {}; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (!cli->is_socket_open()) { |
|
|
|
|
|
LOG_ERROR(WebService, "Failed to open socket, skipping request!"); |
|
|
|
|
|
return {}; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
cli->set_connection_timeout(TIMEOUT_SECONDS); |
|
|
cli->set_connection_timeout(TIMEOUT_SECONDS); |
|
|
cli->set_read_timeout(TIMEOUT_SECONDS); |
|
|
cli->set_read_timeout(TIMEOUT_SECONDS); |
|
|
cli->set_write_timeout(TIMEOUT_SECONDS); |
|
|
cli->set_write_timeout(TIMEOUT_SECONDS); |
|
|
|