We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14f4173 commit 6350666Copy full SHA for 6350666
server/odoo_language_server.py
@@ -28,6 +28,8 @@ def __init__(self):
28
super().__init__(name=EXTENSION_NAME, version=EXTENSION_VERSION)
29
30
def report_server_error(self, error: Exception, source):
31
+ if isinstance(error, BrokenPipeError):
32
+ exit(1)
33
try:
34
odoo_server.show_message_log(traceback.format_exc(), MessageType.Error)
35
odoo_server.send_notification("Odoo/displayCrashNotification", {"crashInfo": traceback.format_exc()})
0 commit comments