Commit 69cb5dc
authored
fix: restore logging.basicConfig in test remote servers (#435)
The revert in #434 accidentally removed the `logging.basicConfig(level=logging.INFO)`
call from the test remote servers. Without it, the root logger defaults to WARNING,
which silently drops the `logger.info()` call that emits `Status.rollout_finished()`.
The FireworksTracingHttpHandler never fires, no POST /logs is made, and the
RemoteRolloutProcessor polling loop times out after 180 seconds.
This restores the original line (with its explanatory comment) in both
remote_server.py and remote_server_multi_turn.py.
Made-with: Cursor1 parent 0f3c471 commit 69cb5dc
File tree
2 files changed
+6
-0
lines changed- tests/remote_server
2 files changed
+6
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
16 | 19 | | |
17 | 20 | | |
18 | 21 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
15 | 18 | | |
16 | 19 | | |
17 | 20 | | |
| |||
0 commit comments