-
Notifications
You must be signed in to change notification settings - Fork 557
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
Add bind_address config field #2307
base: main
Are you sure you want to change the base?
Conversation
Could you please document the change and add tests to make sure we don't regress? Thanks |
Use public_addr as default
959f35d
to
c7aef2e
Compare
@@ -0,0 +1,146 @@ | |||
# Available Distributed Configuration Options |
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.
Shouldn't that be part of existing Distributed.md
under a Configuration
title? As a user that's where I'd first go look, having it split looks weird
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.
My rationale for creating a new file is having a canonical place to document configuration, as opposed to samples spread throughout Distributed.md
and DistributedQuickstart.md
.
Keeping the file separate also allows a quick reference for distributed configuration options and mirrors Configuration.md
file structure.
I agree a Configuration
section would also accomplish my first point. However, accessing the information would become a bit more unwieldy, and would bloat Distributed.md
, which is already the largest doc.
Would a link in Distributed.md
allay your concerns?
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.
LGTM with maybe the documentation move?
Allows binding to local address, uses
public_addr
as default.Fix for #930, #974.