test: requests wait for schema cache load

* nix: add postgrest-test-big-schema command
This commit is contained in:
steve-chavez
2024-03-15 06:18:26 -05:00
committed by Steve Chavez
parent 92ac7e574e
commit 4b289b1c97
6 changed files with 77 additions and 23 deletions
+1 -1
View File
@@ -55,5 +55,5 @@ def parse_server_timings_header(header):
for timing in header.split(","):
name, duration_text, *_ = timing.split(";")
_, duration = duration_text.split("=")
timings[name] = float(duration)
timings[name.strip()] = float(duration)
return timings