File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -753,9 +753,9 @@ pub static MIN_COMPACTION_SEGMENTS: LazyLock<usize> =
753
753
pub static MAX_SEGMENT_DELETED_PERCENTAGE : LazyLock < f64 > =
754
754
LazyLock :: new ( || env_config ( "MAX_SEGMENT_DELETED_PERCENTAGE" , 0.2 ) ) ;
755
755
756
- /// Defines the fraction of UDF requests to send to Funrun vs
757
- /// InProcessFunctionRunner in backend .
758
- pub static UDF_USE_FUNRUN : LazyLock < f64 > = LazyLock :: new ( || env_config ( "UDF_USE_FUNRUN" , 0. ) ) ;
756
+ /// Whether to run queries, mutations, and v8 actions in Funrun (true) or
757
+ /// InProcessFunctionRunner (false) .
758
+ pub static UDF_USE_FUNRUN : LazyLock < bool > = LazyLock :: new ( || env_config ( "UDF_USE_FUNRUN" , true ) ) ;
759
759
760
760
/// The amount of time to wait for the primary request to finish before starting
761
761
/// a second backup request when running a vector search.
You can’t perform that action at this time.
0 commit comments