Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1889 - Zeebe GRPC Error Investigation #1888

Merged
merged 3 commits into from
Apr 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sources/camunda-docker-compose-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
services:

zeebe: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#zeebe
image: camunda/zeebe:${CAMUNDA_PLATFORM_VERSION:-8.1.1}
image: camunda/zeebe:${CAMUNDA_PLATFORM_VERSION:-8.2.1}
container_name: zeebe
ports:
- "26500:26500"
Expand All @@ -34,7 +34,7 @@ services:
- elasticsearch

operate: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#operate
image: camunda/operate:${CAMUNDA_PLATFORM_VERSION:-8.1.1}
image: camunda/operate:${CAMUNDA_PLATFORM_VERSION:-8.2.1}
container_name: operate
ports:
- "8081:8080"
Expand All @@ -49,7 +49,7 @@ services:
- elasticsearch

tasklist: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#tasklist
image: camunda/tasklist:${CAMUNDA_PLATFORM_VERSION:-8.1.1}
image: camunda/tasklist:${CAMUNDA_PLATFORM_VERSION:-8.2.1}
container_name: tasklist
ports:
- "8082:8080"
Expand Down
46 changes: 23 additions & 23 deletions sources/packages/backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions sources/packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"ssh2-sftp-client": "^7.1.0",
"swagger-ui-express": "^4.3.0",
"typeorm": "^0.3.14",
"zeebe-node": "^8.1.2"
"zeebe-node": "^8.1.4"
},
"devDependencies": {
"@golevelup/ts-jest": "^0.3.5",
Expand Down Expand Up @@ -157,4 +157,4 @@
"^@sims/integrations(|/.*)$": "<rootDir>/libs/integrations/src/$1"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,7 @@ export class ZeebeMockedClient {
taskType,
taskHandler: mockTaskHandler,
}));
// Zeebe client logs disabled for a better test summary display.
// It can be enable as needed for troubleshooting.
ZeebeMockedClient.mockedZeebeClient = new ZBClient({ loglevel: "NONE" });
ZeebeMockedClient.mockedZeebeClient = new ZBClient({ loglevel: "ERROR" });
fakeWorkers.forEach((fakeWorker) =>
ZeebeMockedClient.mockedZeebeClient.createWorker(fakeWorker),
);
Expand Down
2 changes: 1 addition & 1 deletion sources/tests/workflow-docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
zeebe:
image: camunda/zeebe:${CAMUNDA_PLATFORM_VERSION:-8.1.1}
image: camunda/zeebe:${CAMUNDA_PLATFORM_VERSION:-8.2.1}
container_name: zeebe-test
environment:
- ZEEBE_BROKER_DATA_DISKUSAGECOMMANDWATERMARK=0.998
Expand Down