File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -873,10 +873,13 @@ pub static FUNRUN_CLUSTER_NAME: LazyLock<String> =
873
873
874
874
/// Name of the service to discover for when connecting to Searchlight. (e.g.
875
875
/// searchlight-default, searchlight-staging, etc.)
876
- // TODO(CX-6645): Change the default value to searchlight-default after that
877
876
// cluster is created.
878
- pub static SEARCHLIGHT_CLUSTER_NAME : LazyLock < String > =
879
- LazyLock :: new ( || env_config ( "SEARCHLIGHT_CLUSTER_NAME" , String :: from ( "searchlight" ) ) ) ;
877
+ pub static SEARCHLIGHT_CLUSTER_NAME : LazyLock < String > = LazyLock :: new ( || {
878
+ env_config (
879
+ "SEARCHLIGHT_CLUSTER_NAME" ,
880
+ String :: from ( "searchlight-default" ) ,
881
+ )
882
+ } ) ;
880
883
881
884
/// The maximum number of CPU cores that can be used simultaneously by the
882
885
/// isolates. Zero means no limit.
You can’t perform that action at this time.
0 commit comments