Mercurial > libervia-backend
diff sat_frontends/quick_frontend/quick_app.py @ 3490:509f7a1c67dc
frontends: use new EXIT_BACKEND_NOT_FOUND exit code:
- new EXIT_BACKEND_NOT_FOUND (5) is used when frontend can't find backend with the bridge.
It differs from EXIT_BRIDGE_ERROR (3) which is used when something went wrong when
connecting to backend.
- use this exit code in quick app and in jp
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 23 Mar 2021 21:21:00 +0100 |
parents | be6d91572633 |
children | 524856bd7b19 |
line wrap: on
line diff
--- a/sat_frontends/quick_frontend/quick_app.py Sun Mar 21 22:00:55 2021 +0100 +++ b/sat_frontends/quick_frontend/quick_app.py Tue Mar 23 21:21:00 2021 +0100 @@ -368,10 +368,10 @@ def _bridgeEb(self, failure): if isinstance(failure, exceptions.BridgeExceptionNoService): print((_("Can't connect to SàT backend, are you sure it's launched ?"))) - sys.exit(1) + sys.exit(C.EXIT_BACKEND_NOT_FOUND) elif isinstance(failure, exceptions.BridgeInitError): print((_("Can't init bridge"))) - sys.exit(1) + sys.exit(C.EXIT_BRIDGE_ERROR) else: print((_("Error while initialising bridge: {}".format(failure))))