Fix, change network.disable.rpfilter type from integer to boolean. (#6380)

* Fix, change network.disable.rpfilter type from integer to boolean.

`network.disable.rpfilter` global setting doesn't accept boolean values.

* Changed consoleproxy.disable.rpfilter global setting type from integer to boolean.
This commit is contained in:
Sina Kashipazha 2022-05-13 14:21:22 +02:00 committed by GitHub
parent 57ecdf9ea6
commit 1964b7fda3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -265,7 +265,7 @@ public enum Config {
NetworkRouterRpFilter(
"Network",
ManagementServer.class,
Integer.class,
Boolean.class,
"network.disable.rpfilter",
"true",
"disable rp_filter on Domain Router VM public interfaces.",
@ -446,7 +446,7 @@ public enum Config {
ConsoleProxyDisableRpFilter(
"Console Proxy",
AgentManager.class,
Integer.class,
Boolean.class,
"consoleproxy.disable.rpfilter",
"true",
"disable rp_filter on console proxy VM public interface",