Skip to content

Commit e7c6309

Browse files
authored
Update src/stac_auth_proxy/utils/requests.py
1 parent 38fe06d commit e7c6309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stac_auth_proxy/utils/requests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def build_server_timing_header(
9191
current_value: Optional[str] = None, *, name: str, desc: str, dur: float
9292
):
9393
"""Append a timing header to headers."""
94-
metric = f"{name};desc={desc};dur={dur:.3f}"
94+
metric = f'{name};desc="{desc}";dur={dur:.3f}'
9595
if current_value:
9696
return f"{current_value}, {metric}"
9797
return metric

0 commit comments

Comments
 (0)