Skip to content

Commit

Permalink
gRPC feature flag to true as a temporary fix. When set with gradle it…
Browse files Browse the repository at this point in the history
… appears port permissions in Securty.java are checked previous to feature flags initialized from settings.

Signed-off-by: Finn Carroll <[email protected]>
  • Loading branch information
finnegancarroll committed Dec 9, 2024
1 parent 74680e8 commit 6de6037
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public class FeatureFlags {
* Gates the functionality of the Netty4 gRPC server.
*/
public static final String GRPC_EXPERIMENTAL = "opensearch.experimental.feature.grpc.enabled";
public static final Setting<Boolean> GRPC_ENABLE_SETTING = Setting.boolSetting(GRPC_EXPERIMENTAL, false, Property.NodeScope);
public static final Setting<Boolean> GRPC_ENABLE_SETTING = Setting.boolSetting(GRPC_EXPERIMENTAL, true, Property.NodeScope);

private static final List<Setting<Boolean>> ALL_FEATURE_FLAG_SETTINGS = List.of(
REMOTE_STORE_MIGRATION_EXPERIMENTAL_SETTING,
Expand Down

0 comments on commit 6de6037

Please sign in to comment.