Update HTTP proxy timeout from 10s to 20s.
This commit is contained in:
parent
0947512ff6
commit
469d810d6b
1 changed files with 2 additions and 2 deletions
|
@ -197,8 +197,8 @@ namespace Connector_HTTP{
|
||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
//keep trying unless the timeout triggers
|
//keep trying unless the timeout triggers
|
||||||
if (timeout++ > 100){
|
if (timeout++ > 200){
|
||||||
std::cout << "[10s timeout triggered]" << std::endl;
|
std::cout << "[20s timeout triggered]" << std::endl;
|
||||||
Handle_Timeout(H, conn);
|
Handle_Timeout(H, conn);
|
||||||
return;
|
return;
|
||||||
}else{
|
}else{
|
||||||
|
|
Loading…
Add table
Reference in a new issue