-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump server to 1.26.2, enable HTTP by default #734
base: next-server
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1647,9 +1647,8 @@ commands: | |
default: 7233 | ||
- name: http-port | ||
type: int | ||
description: | | ||
Port for the HTTP API service. | ||
Default is off. | ||
description: Port for the HTTP API service. Defaults to a random free port. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we have any way to disable the HTTP API service? I can't think of a good reason at this time, so can probably not worry about it for now. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought about this but don't think it's a concern if it defaults to a random port. We can always add a |
||
default: 0 | ||
- name: metrics-port | ||
type: int | ||
description: | | ||
|
@@ -3502,4 +3501,4 @@ option-sets: | |
description: | | ||
An external Nexus Endpoint that receives forwarded Nexus requests. | ||
May be used as an alternative to `--target-namespace` and | ||
`--target-task-queue`. | ||
`--target-task-queue`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are these test updates needed? Can't we just let it choose the random default?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They're not, I left it here in prep for when we make the HTTP port fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think that's a reasonable assumption/expectation yet. But so long as there's some code path somewhere that is covering the random part, all good, even if it's not needed.