Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit c54df58

Browse files
committed
Add Known Issue
1 parent c2ee6d5 commit c54df58

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
# Version 0.23.0-alpha.3
1+
# Version 0.23.0
2+
3+
## Known Issues
4+
5+
_Things that don't work or don't work as expected, and which will be addressed in a future release_
6+
7+
- The `onConnectionError` event of the ZBClient and ZBWorker/ZBBatchWorker is not debounced, and may be called multiple times in succession when the channel jitters, or the broker is not available. See [#161](https://github.com/creditsenseau/zeebe-client-node-js/issues/161).
28

39
## Breaking Changes
410

src/__tests__/disconnection/disconnect.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// tslint:disable-next-line: no-implicit-dependencies
12
import { GenericContainer } from '@sitapati/testcontainers'
23
import { ZBClient } from '../..'
34
// import { createUniqueTaskType } from '../../lib/createUniqueTaskType'
@@ -31,7 +32,7 @@ describe('Worker disconnect/reconnect', () => {
3132
const worker = zbc.createWorker({
3233
loglevel: 'INFO',
3334
longPoll: 5000,
34-
taskHandler: (job, complete) => {
35+
taskHandler: (_, complete) => {
3536
complete.success()
3637
},
3738
taskType: 'disconnection-task',

0 commit comments

Comments
 (0)