tests: bump simple_tcp_client retries to 20

pull/6219/head
Delyan Angelov 2020-08-25 17:52:44 +03:00
parent 7b7ab580ab
commit f259d275fc
1 changed files with 2 additions and 2 deletions

View File

@ -226,7 +226,7 @@ fn testsuite_end() {
// utility code:
struct SimpleTcpClientConfig {
retries int = 10
retries int = 20
host string = 'static.dev'
path string = '/'
agent string = 'v/net.tcp.v'
@ -243,7 +243,7 @@ fn simple_tcp_client(config SimpleTcpClientConfig) ?string {
if tries > config.retries {
return error(err)
}
time.sleep_ms(150)
time.sleep_ms(100)
continue
}
break