Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-04-04 03:58:41 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-04-04 03:58:41 +0300
commitf7347f2935ce4f146d91fd65c4329bc4daa165d4 (patch)
tree81e7b370de833a5414b32092e515f923d41f7a23
parent67611fc7c0f2ea5b8e8cc06af5aba3302213a4be (diff)
Increasing timeouts
-rw-r--r--Clovershell/ClovershellConnection.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Clovershell/ClovershellConnection.cs b/Clovershell/ClovershellConnection.cs
index 4e8e5551..9ba585a4 100644
--- a/Clovershell/ClovershellConnection.cs
+++ b/Clovershell/ClovershellConnection.cs
@@ -429,7 +429,7 @@ namespace com.clusterrr.clovershell
{
Thread.Sleep(50);
t++;
- if (t >= 20)
+ if (t >= 200)
throw new ClovershellException("shell request timeout");
}
}
@@ -611,7 +611,7 @@ namespace com.clusterrr.clovershell
{
Thread.Sleep(50);
t++;
- if (t >= 20)
+ if (t >= 200)
throw new ClovershellException("exec request timeout");
}
while (!c.finished)