Skip to content

Commit

Permalink
support custom
Browse files Browse the repository at this point in the history
  • Loading branch information
yezizp2012 committed Apr 1, 2024
1 parent 57da886 commit 2152109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ctl/src/cmd_impl/meta/migration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ pub async fn migrate(from: EtcdBackend, target: String, force_clean: bool) -> an
let streaming_parallelism = match &table_fragment.assigned_parallelism {
TableParallelism::Adaptive => StreamingParallelism::Adaptive,
TableParallelism::Fixed(n) => StreamingParallelism::Fixed(*n),
TableParallelism::Custom => todo!("custom parallelism"),
TableParallelism::Custom => StreamingParallelism::Custom,
};
let status = match table_fragment.state() {
State::Unspecified => unreachable!(),
Expand Down

0 comments on commit 2152109

Please sign in to comment.