Skip to content

Commit

Permalink
chore(server): restore the previous default server port number 9777 (
Browse files Browse the repository at this point in the history
…#5185)

Patches #5163.
  • Loading branch information
vvagaytsev authored Oct 4, 2023
1 parent c25365c commit 64344b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/commands/serve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 64344b4

Please sign in to comment.