Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bittensor/core/synapse.py
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,8 @@ def parse_headers_to_inputs(cls, headers: dict) -> dict:
logging.error(f"Error while parsing 'input_obj' header {key}: {e}")
continue
else:
logging.warning(f"Unexpected header key encountered: {key}")
# setting this to warning fills up logs unnecessarily
logging.trace(f"Unexpected header key encountered: {key}")

# Assign the remaining known headers directly
inputs_dict["timeout"] = headers.get("timeout", None)
Expand Down
Loading