Skip to content

Commit

Permalink
fix(streaming): also enable schema check in release profile
Browse files Browse the repository at this point in the history
Signed-off-by: Bugen Zhao <i@bugenzhao.com>
  • Loading branch information
BugenZhao committed Mar 22, 2023
1 parent c784683 commit 827e181
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/stream/src/executor/wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ impl WrapperExecutor {
let stream =
trace::instrument_await_tree(info.clone(), extra.actor_id, extra.executor_id, stream);

// Schema check
let stream = schema_check::schema_check(info.clone(), stream);
// Epoch check
let stream = epoch_check::epoch_check(info, stream);

Expand Down

0 comments on commit 827e181

Please sign in to comment.