From 64344b4be10627a653440509d26890d3cc6c91cb Mon Sep 17 00:00:00 2001 From: Vladimir Vagaytsev Date: Thu, 5 Oct 2023 01:06:34 +0200 Subject: [PATCH] chore(server): restore the previous default server port number `9777` (#5185) Patches #5163. --- core/src/commands/serve.ts | 2 +- docs/reference/commands.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/commands/serve.ts b/core/src/commands/serve.ts index 3281c6fa47..8bb55d1115 100644 --- a/core/src/commands/serve.ts +++ b/core/src/commands/serve.ts @@ -23,7 +23,7 @@ import { Garden } from "../garden" import { GardenPluginReference } from "../plugin/plugin" import { CommandError, ParameterError, isEAddrInUseException, isErrnoException } from "../exceptions" -export const defaultServerPort = 9700 +export const defaultServerPort = 9777 export const serveArgs = {} diff --git a/docs/reference/commands.md b/docs/reference/commands.md index fc6fab6296..fe9b9ad1e1 100644 --- a/docs/reference/commands.md +++ b/docs/reference/commands.md @@ -1008,7 +1008,7 @@ This always takes the precedence over sync mode if there are any conflicts, i.e. | `--forward` | | boolean | Create port forwards and leave process running after deploying. This is implied if any of --sync / --local or --logs are set. | `--logs` | | boolean | Stream logs from the requested Deploy(s) (or services if using modules) during deployment, and leave the log streaming process running after deploying. Note: This option implies the --forward option. | `--timestamps` | | boolean | Show timestamps with log output. Should be used with the `--logs` option (has no effect if that option is not used). - | `--port` | | number | The port number for the server to listen on (defaults to 9700 if available). + | `--port` | | number | The port number for the server to listen on (defaults to 9777 if available). #### Outputs