diff options
author | Elizabeth <me@liz.coffee> | 2025-05-29 00:57:46 -0700 |
---|---|---|
committer | Elizabeth <me@liz.coffee> | 2025-05-29 01:10:49 -0700 |
commit | 646c5eb11d3b9240f8434163d103a117d30c88c7 (patch) | |
tree | 42d9b4372ba429ff0e4fa4f67aa415377f2477c2 /hooks | |
parent | 8f4415bff3918e98a4eadeba655af934e52ac5e2 (diff) | |
download | ci-646c5eb11d3b9240f8434163d103a117d30c88c7.tar.gz ci-646c5eb11d3b9240f8434163d103a117d30c88c7.zip |
Fixes recursion stack exhaustion when creating metrics
Diffstat (limited to 'hooks')
-rw-r--r-- | hooks/server/job/queuer.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hooks/server/job/queuer.ts b/hooks/server/job/queuer.ts index 069cca4..d30de22 100644 --- a/hooks/server/job/queuer.ts +++ b/hooks/server/job/queuer.ts @@ -48,7 +48,9 @@ export class LaminarJobQueuer }) .peek((c) => c.trace.trace( - `im so excited to see how this queue job will end!! (>ᴗ<): ${c.get().toString()}`, + `im so excited to see how this queue job will end!! (>ᴗ<): ${c + .get() + .toString()}`, ), ) .map(getStdout) |