Skip to content

Commit

Permalink
chore(meta): change default parallelism for already existed streaming…
Browse files Browse the repository at this point in the history
… job to Custom (#14443)
  • Loading branch information
yezizp2012 authored Jan 9, 2024
1 parent fd768da commit c6f572d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta/src/model/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl From<PbTableParallelism> for TableParallelism {
Some(Fixed(FixedParallelism { parallelism: n })) => Self::Fixed(*n as usize),
Some(Auto(_)) => Self::Auto,
Some(Custom(_)) => Self::Custom,
_ => Self::Auto,
_ => unreachable!(),
}
}
}
Expand Down

0 comments on commit c6f572d

Please sign in to comment.