From cd6080fcaa8073e4655f72127af30db11f9ef743 Mon Sep 17 00:00:00 2001 From: Josh Wulf Date: Fri, 13 Sep 2024 12:30:16 +1200 Subject: [PATCH] fix(zeebe): do not override explicit ZEEBE_GRPC_ADDRESS with default ZEEBE_ADDRESS fixes #245 --- src/lib/Configuration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Configuration.ts b/src/lib/Configuration.ts index 6ec78da1..9d56b592 100644 --- a/src/lib/Configuration.ts +++ b/src/lib/Configuration.ts @@ -24,6 +24,7 @@ const getMainEnv = () => ZEEBE_GRPC_ADDRESS: { type: 'string', optional: true, + default: 'localhost:26500', }, /** The address for the Zeebe REST API. Defaults to localhost:8080 */ ZEEBE_REST_ADDRESS: { @@ -35,7 +36,6 @@ const getMainEnv = () => ZEEBE_ADDRESS: { type: 'string', optional: true, - default: 'localhost:26500', }, /** This is the client ID for the client credentials */ ZEEBE_CLIENT_ID: {