Skip to content
Snippets Groups Projects
Commit 102c74e3 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

increase remote timout to 5 minutes

parent f1c6102a
No related branches found
No related tags found
No related merge requests found
...@@ -54,8 +54,8 @@ int GmshRemote(std::string socket) ...@@ -54,8 +54,8 @@ int GmshRemote(std::string socket)
client.Info("Remote Gmsh is listening..."); client.Info("Remote Gmsh is listening...");
while(1){ while(1){
// stop if we have no communications for 60 seconds // stop if we have no communications for 5 minutes
int ret = client.Select(60, 0); int ret = client.Select(300, 0);
if(!ret){ if(!ret){
client.Info("Timout: stopping remote Gmsh..."); client.Info("Timout: stopping remote Gmsh...");
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment