File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 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> =
753753pub static MAX_SEGMENT_DELETED_PERCENTAGE : LazyLock < f64 > =
754754 LazyLock :: new ( || env_config ( "MAX_SEGMENT_DELETED_PERCENTAGE" , 0.2 ) ) ;
755755
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 ) ) ;
759759
760760/// The amount of time to wait for the primary request to finish before starting
761761/// a second backup request when running a vector search.
You can’t perform that action at this time.
0 commit comments