Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtruong committed Jan 22, 2025
1 parent 540cf68 commit ac29d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weave/trace_server_bindings/remote_http_trace_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def _generic_stream_request(
r = self._generic_request_executor(url, req, stream=True)
for line in r.iter_lines():
if line:
yield res_model.model_validate(json.loads(line))
yield res_model.model_validate_json(line)

@tenacity.retry(
stop=tenacity.stop_after_delay(REMOTE_REQUEST_RETRY_DURATION),
Expand Down

0 comments on commit ac29d41

Please sign in to comment.