-
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?
Conversation
Signed-off-by: Marlene Marz <[email protected]>
Signed-off-by: Marlene Marz <[email protected]>
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 comment
The 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 comment
The 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?
// hostsWhitelist is a hidden option. If it is specified, add the list to hostAllowlist
if (!hostsWhitelist.isEmpty()) {
// if allowlist == default values, remove the default values
if (hostsAllowlist.size() == 2
&& hostsAllowlist.containsAll(List.of("localhost", "127.0.0.1"))) {
hostsAllowlist.removeAll(List.of("localhost", "127.0.0.1"));
}
hostsAllowlist.addAll(hostsWhitelist);
}
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.
@JanetMo if you run ./gradlew compileJava
you will see compile errors locally
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.
needs a changelog entry since this is a breaking 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=* |
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
@@ -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 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
remove the --host-whitelist option, issue #7761
deleted the command and it's associated tests, the changelog was already adapted