We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b7ab58 commit f259d27Copy full SHA for f259d27
vlib/vweb/tests/vweb_test.v
@@ -226,7 +226,7 @@ fn testsuite_end() {
226
227
// utility code:
228
struct SimpleTcpClientConfig {
229
- retries int = 10
+ retries int = 20
230
host string = 'static.dev'
231
path string = '/'
232
agent string = 'v/net.tcp.v'
@@ -243,7 +243,7 @@ fn simple_tcp_client(config SimpleTcpClientConfig) ?string {
243
if tries > config.retries {
244
return error(err)
245
}
246
- time.sleep_ms(150)
+ time.sleep_ms(100)
247
continue
248
249
break
0 commit comments