diff options
author | Christopher Baines <mail@cbaines.net> | 2023-03-29 13:32:02 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-03-29 13:32:02 +0100 |
commit | 7a9998348836b4be9456c98ee95f25f587ada77f (patch) | |
tree | 574efe72a59e5449736bd7b2134072a472f7ad64 | |
parent | 32a4ff23d7c40137a31aa8d618cd0f62f4a6fe0d (diff) | |
download | build-coordinator-7a9998348836b4be9456c98ee95f25f587ada77f.tar build-coordinator-7a9998348836b4be9456c98ee95f25f587ada77f.tar.gz |
Give up printing backtraces for exceptions in hooks
I think it's causing problems that I'm struggling to reproduce and debug.
-rw-r--r-- | guix-build-coordinator/coordinator.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/guix-build-coordinator/coordinator.scm b/guix-build-coordinator/coordinator.scm index 1526cc0..6d3fc1d 100644 --- a/guix-build-coordinator/coordinator.scm +++ b/guix-build-coordinator/coordinator.scm @@ -1022,7 +1022,10 @@ 'ERROR "error running " event " (" id ") hook: " args) - (backtrace))) + ;; TODO: This seems to be causing the threads to get stuck and use + ;; excessive amounts of memory :( + ;; (backtrace) + )) (log-msg (build-coordinator-logger build-coordinator) 'DEBUG event " handler finished") |