refactor(router_strategy): align async else-branch with sync (response_seconds)

Review nit: no behavioral difference (response_seconds = response_ms at
that point), symmetry only.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Mihidum Hettiyahandi 2026-07-15 12:14:32 +10:00
parent b9a7b807b0
commit 3cde96d848

View file

@ -295,7 +295,7 @@ class LowestLatencyLoggingHandler(CustomLogger):
if normalized_value is not None:
final_value = float(normalized_value)
else:
final_value = response_ms
final_value = response_seconds
if time_to_first_token_response_time is not None:
if isinstance(time_to_first_token_response_time, timedelta):