Unverified Commit 8bf0c981 authored by copilot-swe-agent[bot]'s avatar copilot-swe-agent[bot] Committed by GitHub
Browse files

fix: Remove unnecessary SystemExit catch in balloon.py

parent 3bb1888a
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -799,8 +799,6 @@ if __name__ == "__main__":
    except (ConnectionError, BrokenPipeError, OSError) as e:
        log.info("Monitor exiting: %s", e)
        sys.exit(0)
    except SystemExit:
        raise
    except Exception as e:
        log.error("Monitor terminated unexpectedly: %s", e, exc_info=e)
        sys.exit(1)