Skip to content

Commit

Permalink
increase reloading timeout in io-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenceisla committed Nov 6, 2023
1 parent 4ffcbae commit b626142
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/io/postgrest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@

def sleep_until_postgrest_scache_reload():
"Sleep until schema cache reload"
time.sleep(0.2)
time.sleep(0.3)


def sleep_until_postgrest_config_reload():
"Sleep until config reload"
time.sleep(0.1)
time.sleep(0.2)


def sleep_until_postgrest_full_reload():
"Sleep until schema cache plus config reload"
time.sleep(0.2)
time.sleep(0.3)


class PostgrestTimedOut(Exception):
Expand Down

0 comments on commit b626142

Please sign in to comment.