From cbea90f5df131d4d33a20d68b174a3af002f2bbe Mon Sep 17 00:00:00 2001 From: Amara Date: Fri, 6 Sep 2024 12:05:08 -0500 Subject: [PATCH] fix link --- .../best-practices/development/writing-good-workers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-8.5/components/best-practices/development/writing-good-workers.md b/versioned_docs/version-8.5/components/best-practices/development/writing-good-workers.md index 067c6cc448..77a8117deb 100644 --- a/versioned_docs/version-8.5/components/best-practices/development/writing-good-workers.md +++ b/versioned_docs/version-8.5/components/best-practices/development/writing-good-workers.md @@ -264,7 +264,7 @@ zbc.createWorker({ This is **reactive code**. And a really interesting observation is that reactive programming is so deep in the JavaScript language that it is impossible to write blocking code, even code that looks blocking is still [executed in a non-blocking fashion](https://github.com/berndruecker/camunda-cloud-clients-parallel-job-execution/blob/main/results/nodejs-blocking.log). -Node.js code scales pretty well and there is no specific thread pool defined or necessary. The Camunda 8 Node.js client library also [uses reactive programming internally]([https://github.com/camunda-community-hub/zeebe-client-node-js/blob/master/src/zb/ZBWorker.ts#L28](https://github.com/camunda/camunda-8-js-sdk/blob/main/src/zeebe/zb/ZBWorker.ts#L27)). +Node.js code scales pretty well and there is no specific thread pool defined or necessary. The Camunda 8 Node.js client library also [uses reactive programming internally](https://github.com/camunda-community-hub/zeebe-client-node-js/blob/master/src/zb/ZBWorker.ts#L27). This makes the recommendation very straight-forward: