Skip to content

Commit

Permalink
Default to turning off tokio's LIFO slot (#30490)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 37216d0de8f96aa0819acf2b5471ed70f1fc6bae
  • Loading branch information
sujayakar authored and Convex, Inc. committed Oct 9, 2024
1 parent 8213ae9 commit 6dbc909
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/common/src/knobs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub static RUNTIME_WORKER_THREADS: LazyLock<usize> =
/// help with tail latencies until they improve its implementation.
/// See https://docs.rs/tokio/latest/tokio/runtime/struct.Builder.html#method.disable_lifo_slot.
pub static RUNTIME_DISABLE_LIFO_SLOT: LazyLock<bool> =
LazyLock::new(|| env_config("RUNTIME_DISABLE_LIFO_SLOT", false));
LazyLock::new(|| env_config("RUNTIME_DISABLE_LIFO_SLOT", true));

/// Maximum size of the UDF cache. Default 100MiB.
pub static UDF_CACHE_MAX_SIZE: LazyLock<usize> =
Expand Down
2 changes: 1 addition & 1 deletion scripts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6dbc909

Please sign in to comment.