Skip to content

Commit bb590d5

Browse files
goffrieConvex, Inc.
authored and
Convex, Inc.
committed
Fix FUNRUN_CODE_CACHE_SIZE knob (#37756)
GitOrigin-RevId: 0ea70891a95141dc6986b04d489f7d524bfb0ee2
1 parent f223cea commit bb590d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/common/src/knobs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@ pub static FUNRUN_MODULE_MAX_CONCURRENCY: LazyLock<usize> =
937937

938938
/// The maximum size of the module code cache in Funrun in bytes.
939939
pub static FUNRUN_CODE_CACHE_SIZE: LazyLock<u64> =
940-
LazyLock::new(|| env_config("FUNRUN_MODULE_CACHE_SIZE", 500_000_000));
940+
LazyLock::new(|| env_config("FUNRUN_CODE_CACHE_SIZE", 500_000_000));
941941

942942
/// The maximum number of fetch clients Funrun would create.
943943
pub static FUNRUN_FETCH_CLIENT_CACHE_SIZE: LazyLock<usize> =

0 commit comments

Comments
 (0)