Skip to content

Commit

Permalink
fix(zeebe): do not override explicit ZEEBE_GRPC_ADDRESS with default …
Browse files Browse the repository at this point in the history
…ZEEBE_ADDRESS

fixes #245
  • Loading branch information
jwulf committed Sep 27, 2024
1 parent a49d217 commit cd6080f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand All @@ -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: {
Expand Down

0 comments on commit cd6080f

Please sign in to comment.