projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd2fb40
)
devops: Lengthen default reply timeout.
author
Matt Birkholz
<matt@birchwood-abbey.net>
Wed, 13 Sep 2017 07:42:41 +0000
(
00:42
-0700)
committer
Matt Birkholz
<matt@birchwood-abbey.net>
Wed, 13 Sep 2017 07:42:41 +0000
(
00:42
-0700)
src/devops/devops.scm
patch
|
blob
|
history
diff --git
a/src/devops/devops.scm
b/src/devops/devops.scm
index bb4f647f1a9b1207293df0e5d687167ff06a6929..205638e80a4f83f1f5343e130d1f15c32100660c 100644
(file)
--- a/
src/devops/devops.scm
+++ b/
src/devops/devops.scm
@@
-409,10
+409,12
@@
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
(define build-dir "devops")
+(define reply-wait 10000)
+
(define (read-reply query i/o)
(write-line `(write-line ,query) i/o)
(flush-output-port i/o)
- (let ((object (read-until
3000
i/o)))
+ (let ((object (read-until
reply-wait
i/o)))
(if (eq? object 'timeout)
(error "Timeout awaiting reply."))
object))