From 6b605ca468a656f1eb8d513a3439fd5fe474e46f Mon Sep 17 00:00:00 2001 From: Daniel Woelfel Date: Thu, 16 Jan 2025 11:08:25 -0800 Subject: [PATCH] make it easier to find finished tasks --- server/src/instant/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/instant/core.clj b/server/src/instant/core.clj index 4c3eb9d4..cee58308 100644 --- a/server/src/instant/core.clj +++ b/server/src/instant/core.clj @@ -162,7 +162,7 @@ (defmacro log-init [operation & body] `(do (tracer/record-info! {:name (format "init.start.%s" (name ~operation))}) - (tracer/with-span! {:name (format "init.%s" (name ~operation))} + (tracer/with-span! {:name (format "init.finish.%s" (name ~operation))} ~@body))) (defn -main [& _args]