1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-01-09 14:45:47 +02:00

tests: sleep in slow_start

This commit is contained in:
Grigory Smolkin 2021-04-25 15:33:49 +03:00
parent 13492bf8ca
commit 9f29fb9b59

View File

@ -138,11 +138,11 @@ def slow_start(self, replica=False):
except testgres.QueryException as e: except testgres.QueryException as e:
if 'database system is starting up' in e.message: if 'database system is starting up' in e.message:
continue pass
else: else:
raise e raise e
sleep(1) sleep(0.5)
class ProbackupTest(object): class ProbackupTest(object):
# Class attributes # Class attributes