Skip to content

Commit

Permalink
version: worker@1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
josephjclark committed May 10, 2024
1 parent 89e4d7d commit 41af63b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .changeset/tidy-gorillas-own.md

This file was deleted.

7 changes: 7 additions & 0 deletions integration-tests/worker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @openfn/integration-tests-worker

## 1.0.42

### Patch Changes

- Updated dependencies [bdff4b2]
- @openfn/ws-worker@1.1.7

## 1.0.41

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/worker/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@openfn/integration-tests-worker",
"private": true,
"version": "1.0.41",
"version": "1.0.42",
"description": "Lightning WOrker integration tests",
"author": "Open Function Group <admin@openfn.org>",
"license": "ISC",
Expand Down
6 changes: 6 additions & 0 deletions packages/ws-worker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# ws-worker

## 1.1.7

### Patch Changes

- bdff4b2: Fix an issue where workers may not be returned to the pool if run:complete throws

## 1.1.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ws-worker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openfn/ws-worker",
"version": "1.1.6",
"version": "1.1.7",
"description": "A Websocket Worker to connect Lightning to a Runtime Engine",
"main": "dist/index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/ws-worker/src/channels/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const joinRunChannel = (
logger.debug(`Leaving ${channelName}`);
});
channel.onError((e: any) => {
// Error occured on the channel
// Error occurred on the channel
// (the socket will try to reconnect with backoff)
logger.debug(`Error in ${channelName}`);
logger.debug(e);
Expand Down

0 comments on commit 41af63b

Please sign in to comment.