We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f223cea commit bb590d5Copy full SHA for bb590d5
crates/common/src/knobs.rs
@@ -937,7 +937,7 @@ pub static FUNRUN_MODULE_MAX_CONCURRENCY: LazyLock<usize> =
937
938
/// The maximum size of the module code cache in Funrun in bytes.
939
pub static FUNRUN_CODE_CACHE_SIZE: LazyLock<u64> =
940
- LazyLock::new(|| env_config("FUNRUN_MODULE_CACHE_SIZE", 500_000_000));
+ LazyLock::new(|| env_config("FUNRUN_CODE_CACHE_SIZE", 500_000_000));
941
942
/// The maximum number of fetch clients Funrun would create.
943
pub static FUNRUN_FETCH_CLIENT_CACHE_SIZE: LazyLock<usize> =
0 commit comments