| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
The /ping endpoint has always emitted both "status" and "time_of_last_update" but neither the PingStatus docstring nor _handle_ping explained the latter. Without it the platform idle-reaper fires even when status is HealthyBusy, silently killing containers mid-execution. Add docstrings to PingStatus and _handle_ping that describe the full response contract and warn that time_of_last_update is required. Fixes aws#471
| Back | FazBrowse Home | New Git URL |
Summary
The /ping endpoint has always emitted {"status": "...", "time_of_last_update": <int>} (since commit 4f5c80d), but neither PingStatus nor _handle_ping had docstrings explaining that time_of_last_update is required for the platform's idle-reaper logic. Without this field, idleRuntimeSessionTimeout fires even while /ping returns HealthyBusy, silently killing containers mid-execution.
This is a pure documentation fix — no logic changes.
Fixes #471
Changes