Added error message and handling for non-starting connectors over HTTP.
This commit is contained in:
parent
848f075ff4
commit
3016653f9a
1 changed files with 4 additions and 0 deletions
|
@ -635,6 +635,10 @@ namespace Connector_HTTP {
|
||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
proxyHandleThroughConnector(Client, conn, handler);
|
proxyHandleThroughConnector(Client, conn, handler);
|
||||||
|
if (conn.connected()){
|
||||||
|
FAIL_MSG("Request %d (%s) failed - no connector started", conn.getSocket(), handler.c_str());
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
DEBUG_MSG(DLVL_HIGH, "Completed request %d (%s) ", conn.getSocket(), handler.c_str());
|
DEBUG_MSG(DLVL_HIGH, "Completed request %d (%s) ", conn.getSocket(), handler.c_str());
|
||||||
if (closeConnection){
|
if (closeConnection){
|
||||||
|
|
Loading…
Add table
Reference in a new issue