Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
josephjclark committed Sep 25, 2024
1 parent 482895d commit 86a5614
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/ws-worker/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@ function createServer(engine: RuntimeEngine, options: ServerOptions = {}) {
// Callback to be triggered when the work is done (including errors)
const onFinish = () => {
const duration = (Date.now() - start) / 1000;
logger.debug(`workflow ${id} complete in ${duration}s: releasing worker`);
logger.debug(
`workflow ${id} complete in ${duration}s: releasing worker`
);
delete app.workflows[id];
runChannel.leave();

Expand Down

0 comments on commit 86a5614

Please sign in to comment.