Skip to content

Commit b45c8fb

Browse files
Whatev CI asked me to do
1 parent 0add2f2 commit b45c8fb

File tree

7 files changed

+16
-5
lines changed

7 files changed

+16
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/src/commands/invocations/cancel.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ use crate::cli_env::CliEnv;
1919
use crate::clients::batch_execute;
2020
use crate::clients::datafusion_helpers::find_active_invocations_simple;
2121
use crate::clients::{self, AdminClientInterface};
22-
use crate::commands::invocations::{create_query_filter, DEFAULT_BATCH_INVOCATIONS_OPERATION_LIMIT};
22+
use crate::commands::invocations::{
23+
DEFAULT_BATCH_INVOCATIONS_OPERATION_LIMIT, create_query_filter,
24+
};
2325
use crate::ui::invocations::render_simple_invocation_list;
2426
use crate::ui::with_progress;
2527

cli/src/commands/invocations/pause.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ use crate::clients::datafusion_helpers::find_active_invocations_simple;
1313
use crate::clients::{self, AdminClientInterface, batch_execute};
1414
use crate::ui::invocations::render_simple_invocation_list;
1515

16+
use crate::commands::invocations::DEFAULT_BATCH_INVOCATIONS_OPERATION_LIMIT;
1617
use anyhow::{Result, anyhow, bail};
1718
use cling::prelude::*;
1819
use comfy_table::{Cell, Color, Table};
1920
use restate_cli_util::ui::console::{StyledTable, confirm_or_exit};
2021
use restate_cli_util::{c_indent_table, c_println, c_success, c_warn};
2122
use restate_types::identifiers::InvocationId;
22-
use crate::commands::invocations::DEFAULT_BATCH_INVOCATIONS_OPERATION_LIMIT;
2323

2424
#[derive(Run, Parser, Collect, Clone)]
2525
#[cling(run = "run_pause")]

cli/src/commands/invocations/purge.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
use crate::cli_env::CliEnv;
1212
use crate::clients::datafusion_helpers::find_active_invocations_simple;
1313
use crate::clients::{self, AdminClientInterface, batch_execute};
14-
use crate::commands::invocations::{create_query_filter, DEFAULT_BATCH_INVOCATIONS_OPERATION_LIMIT};
14+
use crate::commands::invocations::{
15+
DEFAULT_BATCH_INVOCATIONS_OPERATION_LIMIT, create_query_filter,
16+
};
1517
use crate::ui::invocations::render_simple_invocation_list;
1618

1719
use anyhow::{Result, anyhow, bail};

cli/src/commands/invocations/restart_as_new.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ use crate::clients::datafusion_helpers::find_active_invocations_simple;
1313
use crate::clients::{self, AdminClientInterface, batch_execute};
1414
use crate::ui::invocations::render_simple_invocation_list;
1515

16-
use crate::commands::invocations::{create_query_filter, DEFAULT_BATCH_INVOCATIONS_OPERATION_LIMIT};
16+
use crate::commands::invocations::{
17+
DEFAULT_BATCH_INVOCATIONS_OPERATION_LIMIT, create_query_filter,
18+
};
1719
use anyhow::{Result, anyhow, bail};
1820
use cling::prelude::*;
1921
use comfy_table::{Attribute, Cell, Color, Table};

cli/src/commands/invocations/resume.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ use crate::clients::datafusion_helpers::find_active_invocations_simple;
1313
use crate::clients::{self, AdminClientInterface, batch_execute};
1414
use crate::ui::invocations::render_simple_invocation_list;
1515

16-
use crate::commands::invocations::{create_query_filter, DEFAULT_BATCH_INVOCATIONS_OPERATION_LIMIT};
16+
use crate::commands::invocations::{
17+
DEFAULT_BATCH_INVOCATIONS_OPERATION_LIMIT, create_query_filter,
18+
};
1719
use anyhow::{Result, anyhow, bail};
1820
use cling::prelude::*;
1921
use comfy_table::{Cell, Color, Table};

workspace-hack/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ clap_builder = { version = "4", default-features = false, features = ["color", "
4444
comfy-table = { version = "7" }
4545
criterion = { version = "0.5", features = ["async_tokio"] }
4646
crossbeam-epoch = { version = "0.9" }
47+
crossbeam-utils = { version = "0.8" }
4748
datafusion-common = { version = "50", default-features = false, features = ["object_store", "recursive_protection"] }
4849
datafusion-expr = { version = "50", default-features = false, features = ["recursive_protection"] }
4950
digest = { version = "0.10", features = ["mac", "std"] }
@@ -171,6 +172,7 @@ clap_builder = { version = "4", default-features = false, features = ["color", "
171172
comfy-table = { version = "7" }
172173
criterion = { version = "0.5", features = ["async_tokio"] }
173174
crossbeam-epoch = { version = "0.9" }
175+
crossbeam-utils = { version = "0.8" }
174176
datafusion-common = { version = "50", default-features = false, features = ["object_store", "recursive_protection"] }
175177
datafusion-expr = { version = "50", default-features = false, features = ["recursive_protection"] }
176178
digest = { version = "0.10", features = ["mac", "std"] }

0 commit comments

Comments
 (0)