1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Description: Increase hardcoded default timeout.
Author: Yavor Doganov <yavor@gnu.org>
Forwarded: https://savannah.nongnu.org/bugs/index.php?55222
Last-Update: 2018-12-13
---
--- pantomime.orig/Framework/Pantomime/CWTCPConnection.m
+++ pantomime/Framework/Pantomime/CWTCPConnection.m
@@ -55,7 +55,7 @@
#include <sys/filio.h> // For FIONBIO on Solaris
#endif
-#define DEFAULT_TIMEOUT 60
+#define DEFAULT_TIMEOUT 600
//
//
--- pantomime.orig/Framework/Pantomime/CWService.m
+++ pantomime/Framework/Pantomime/CWService.m
@@ -53,7 +53,7 @@
//
// Default timeout used when waiting for something to complete.
//
-#define DEFAULT_TIMEOUT 60
+#define DEFAULT_TIMEOUT 600
//
// Service's private interface.
|