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 820587c commit fe63582Copy full SHA for fe63582
src/Lean/Server/FileWorker.lean
@@ -1098,5 +1098,7 @@ def workerMain (opts : Options) : IO UInt32 := do
1098
catch err =>
1099
e.putStrLn err.toString
1100
IO.Process.forceExit 1 -- Terminate all tasks of this process
1101
+ finally
1102
+ IO.Process.forceExit (α := UInt32) 1
1103
1104
end Lean.Server.FileWorker
src/Lean/Server/Watchdog.lean
@@ -1809,5 +1809,7 @@ def watchdogMain (args : List String) : IO UInt32 := do
1809
1810
e.putStrLn s!"Watchdog error: {err}"
1811
1812
1813
1814
1815
end Lean.Server.Watchdog
0 commit comments