Skip to content

Commit

Permalink
Native transports disabled by default in clustering
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfurmanski committed Sep 28, 2018
1 parent 9c01a24 commit 9e7515d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public class CausalClusteringSettings implements LoadableConfig

@Description( "Use native transport if available. Epoll for Linux or Kqueue for MacOS. If this setting is set to false, or if native transport is not " +
"available, nio transport will be used." )
public static final Setting<Boolean> use_native_transport = setting( "causal_clustering.use_native_transport", BOOLEAN, TRUE );
public static final Setting<Boolean> use_native_transport = setting( "causal_clustering.use_native_transport", BOOLEAN, FALSE );

@Description( "Type of in-flight cache." )
public static final Setting<InFlightCacheFactory.Type> in_flight_cache_type =
Expand Down

0 comments on commit 9e7515d

Please sign in to comment.