Skip to content

Commit 17f0813

Browse files
sjuddConvex, Inc.
authored and
Convex, Inc.
committed
Add bigbrain support for searchlight clusters (#26562)
GitOrigin-RevId: 692cb9394db34b42015f5f784868086ebe7c651b
1 parent d8b61b2 commit 17f0813

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

crates/common/src/knobs.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -869,9 +869,12 @@ pub static FUNRUN_SCHEDULER_MAX_PERCENT_PER_CLIENT: LazyLock<usize> =
869869
/// Name of the service to discover for when connecting to Funrun (e.g.
870870
/// funrun-default, funrun-staging, etc.)
871871
pub static FUNRUN_CLUSTER_NAME: LazyLock<String> =
872-
LazyLock::new(|| env_config("FUNRUN_CLUSTER_NAME", String::from("funrun")));
872+
LazyLock::new(|| env_config("FUNRUN_CLUSTER_NAME", String::from("funrun-default")));
873873

874-
/// Name of the service to discover for when connecting to Searchlight.
874+
/// Name of the service to discover for when connecting to Searchlight. (e.g.
875+
/// searchlight-default, searchlight-staging, etc.)
876+
// TODO(CX-6645): Change the default value to searchlight-default after that
877+
// cluster is created.
875878
pub static SEARCHLIGHT_CLUSTER_NAME: LazyLock<String> =
876879
LazyLock::new(|| env_config("SEARCHLIGHT_CLUSTER_NAME", String::from("searchlight")));
877880

0 commit comments

Comments
 (0)