Skip to content

Commit

Permalink
fix(exec): Add default port for executor
Browse files Browse the repository at this point in the history
  • Loading branch information
RPate97 committed Jan 28, 2023
1 parent b343641 commit fdb9e62
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/chilled-ads-protect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@chugsplash/executor': patch
---

Set executor default port
2 changes: 1 addition & 1 deletion packages/executor/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class ChugSplashExecutor extends BaseServiceV2<
loop: true,
options: {
loopIntervalMs: 5000,
port: parseInt(process.env.EXECUTOR_PORT, 10),
port: parseInt(process.env.EXECUTOR_PORT ?? '7300', 10),
...options,
},
optionsSpec: {
Expand Down

0 comments on commit fdb9e62

Please sign in to comment.