Skip to content
Snippets Groups Projects
Commit 272186ac authored by Steven Murray's avatar Steven Murray
Browse files

Increased tapeserverd newtork timeout from 1 to 10 seconds

parent a4c194ea
Branches
Tags
No related merge requests found
......@@ -53,8 +53,8 @@ int main(const int argc, char **const argv) {
log(LOG_ERR, "Aborting: Cannot continue without vdqm host-name");
return 1;
}
const int newTimeout = 1;
VdqmImpl vdqm(log, vdqmHostName, VDQM_PORT, newTimeout);
const int netTimeout = 10; // Timeout in seconds
VdqmImpl vdqm(log, vdqmHostName, VDQM_PORT, netTimeout);
castor::io::PollReactorImpl reactor(log);
TapeDaemon daemon(std::cout, std::cerr, log, vdqm, reactor);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment