Skip to content

Commit

Permalink
Update quickwit/quickwit-common/src/runtimes.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
fulmicoton committed May 8, 2024
1 parent 752d11b commit 92c3787
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/cbench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ on:
# pull request.
pull_request_target:

env:
RUSTFLAGS: "--cfg tokio_unstable"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true


jobs:
tests:
name: Benchmark
Expand Down
2 changes: 1 addition & 1 deletion quickwit/quickwit-common/src/runtimes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl Default for RuntimesConfig {
}

fn start_runtimes(config: RuntimesConfig) -> HashMap<RuntimeType, Runtime> {
let disable_lifo_slot: bool = crate::get_from_env("DISABLE_LIFO_SLOT", false);
let disable_lifo_slot: bool = crate::get_from_env("DISABLE_LIFO_SLOT", true);

let mut runtimes = HashMap::default();
let mut blocking_runtime_builder = tokio::runtime::Builder::new_multi_thread();
Expand Down

0 comments on commit 92c3787

Please sign in to comment.