Increasing timeout when opening a client in tests/queries/0_stateless/helpers/client.py.

This commit is contained in:
Vitaliy Zakaznikov 2020-04-30 09:46:36 -04:00
parent 15e8f37839
commit f2d8ac7ece

View File

@ -20,7 +20,7 @@ class client(object):
self.client.eol('\r')
self.client.logger(log, prefix=name)
self.client.timeout(20)
self.client.expect('[#\$] ', timeout=2)
self.client.expect('[#\$] ', timeout=60)
self.client.send(command)
def __enter__(self):