From c6529f95858d0d6d6ecc1dfbb79090c439e161d1 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 18 Aug 2025 10:46:48 +0200 Subject: [PATCH] :bug: Fix corner case on worker runner --- backend/src/app/worker/runner.clj | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/backend/src/app/worker/runner.clj b/backend/src/app/worker/runner.clj index c7c1a0e61f..c47d4d7759 100644 --- a/backend/src/app/worker/runner.clj +++ b/backend/src/app/worker/runner.clj @@ -220,10 +220,8 @@ (px/sleep timeout) (recur result)) (do - (l/err :hint "unhandled exception on processing task result (retrying in some instants)" - :cause cause) - (px/sleep timeout) - (recur result))))))] + (l/err :hint "unhandled exception on processing task result" + :cause cause))))))] (try (let [key (str/ffmt "taskq:%" queue)