From 75a7505c9a85451b0329165305fa2c2a92b0a0cf Mon Sep 17 00:00:00 2001 From: raqfc <64285399+raqfc@users.noreply.github.com> Date: Mon, 10 Aug 2026 20:17:24 -0300 Subject: [PATCH] Fix queue name ref in comment The Step 3 comment says the code will start accepting tasks in the "`greeting-tasks` queue", but in the code above the configured queue is "hello-world. --- exercises/hello-workflow/practice/src/worker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/hello-workflow/practice/src/worker.ts b/exercises/hello-workflow/practice/src/worker.ts index 5e62421..d595373 100644 --- a/exercises/hello-workflow/practice/src/worker.ts +++ b/exercises/hello-workflow/practice/src/worker.ts @@ -18,7 +18,7 @@ async function run() { workflowsPath: require.resolve('./workflows'), }); - // Step 3: Start accepting tasks on the `greeting-tasks` queue + // Step 3: Start accepting tasks on the `hello-world` queue // // The worker runs until it encounters an unexepected error or the process receives a shutdown signal registered on // the SDK Runtime object.