-
Notifications
You must be signed in to change notification settings - Fork 844
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
Remove --host-whitelist 2.0 #7884
base: main
Are you sure you want to change the base?
Changes from 2 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 |
---|---|---|
|
@@ -66,7 +66,6 @@ services: | |
- --rpc-ws-enabled | ||
- --rpc-ws-apis=admin,eth,miner,web3,net,priv,eea | ||
- --rpc-ws-host=0.0.0.0 | ||
- --host-whitelist=* | ||
- --graphql-http-enabled | ||
- --discovery-enabled=false | ||
- --privacy-enabled=true | ||
|
@@ -84,7 +83,6 @@ services: | |
- --rpc-ws-enabled | ||
- --rpc-ws-apis=admin,eth,miner,web3,net,priv,eea | ||
- --rpc-ws-host=0.0.0.0 | ||
- --host-whitelist=* | ||
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. instead of deleting this line, can you change to host-allowlist |
||
- --graphql-http-enabled | ||
- --discovery-enabled=false | ||
- --privacy-enabled=true | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -592,14 +592,6 @@ static class PrivacyOptionGroup { | |
defaultValue = "localhost,127.0.0.1") | ||
private final JsonRPCAllowlistHostsProperty hostsAllowlist = new JsonRPCAllowlistHostsProperty(); | ||
|
||
@Option( | ||
names = {"--host-whitelist"}, | ||
hidden = true, | ||
paramLabel = "<hostname>[,<hostname>...]... or * or all", | ||
description = | ||
"Deprecated in favor of --host-allowlist. Comma separated list of hostnames to allow for RPC access, or * to accept any host (default: ${DEFAULT-VALUE})") | ||
private final JsonRPCAllowlistHostsProperty hostsWhitelist = new JsonRPCAllowlistHostsProperty(); | ||
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. There is also some code in the configure method of BesuCommand that uses the hostsWhitelist variable that needs to be removed as well 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. Thanks for the review! You mean this part further down in the same file, of another one?
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. @JanetMo if you run |
||
|
||
@SuppressWarnings({"FieldCanBeFinal", "FieldMayBeFinal"}) | ||
@Option( | ||
names = {"--color-enabled"}, | ||
|
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.
instead of deleting this line, can you change to host-allowlist