mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-17 08:18:09 +00:00
Guard os.waitpid and os.WNOHANG usage with sys.platform check. These APIs are Unix-only; on Windows they cause AttributeError and prevent proxy startup. - _try_waitpid_watch: return False on Windows, fall back to os.kill polling - _reap_all_zombies: return empty set on Windows (no zombies) Add unit tests for Windows path. Made-with: Cursor