Skip to content

Commit 02b05ea

Browse files
committed
cursor coment
1 parent d2cd702 commit 02b05ea

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

eval_protocol/log_utils/fireworks_tracing_http_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def _build_payload(self, record: logging.LogRecord, rollout_id: str) -> Dict[str
126126
program = cast(Optional[str], getattr(record, "program", None)) or "eval_protocol"
127127

128128
extras_input = getattr(record, "extras", None)
129-
extras: Dict[str, Any] = extras_input if isinstance(extras_input, dict) else {}
129+
extras: Dict[str, Any] = dict(extras_input) if isinstance(extras_input, dict) else {}
130130
extras["logger_name"] = record.name
131131
extras["level"] = record.levelname
132132
extras["timestamp"] = timestamp

typescript/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@
99
"types": "./dist/index.d.ts"
1010
}
1111
},
12-
"files": ["dist"],
13-
"version": "0.1.10",
12+
"files": [
13+
"dist"
14+
],
15+
"version": "0.1.11",
1416
"peerDependencies": {
1517
"typescript": "^5",
1618
"@vercel/functions": "^1.4.0",

0 commit comments

Comments
 (0)