More robust against experimentation where the range of `i` is increased

This commit is contained in:
Tony Garnock-Jones 2018-05-06 13:38:52 +01:00
parent dbcc931ebd
commit 017d5851be
1 changed files with 1 additions and 1 deletions

View File

@ -86,6 +86,6 @@
counter)))
(send! (outbound (tcp-channel us them response)))
(for [(i 4)]
(define buf (make-bytes 1024 (+ #x30 i)))
(define buf (make-bytes 1024 (+ #x30 (modulo i 10))))
(send! (outbound (tcp-channel us them buf))))
(stop-facet (current-facet-id)))))))