Skip to content

Commit 0c5ee51

Browse files
authored
Don't warn about BumpStream on workflow worker shutdown (#1064)
1 parent ccf6be2 commit 0c5ee51

File tree

1 file changed

+1
-1
lines changed
  • crates/sdk-core/src/worker/workflow

1 file changed

+1
-1
lines changed

crates/sdk-core/src/worker/workflow/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ impl Workflows {
717717
fn send_local(&self, msg: impl Into<LocalInputs>) -> bool {
718718
let msg = msg.into();
719719
let print_err = match &msg {
720-
LocalInputs::GetStateInfo(_) => false,
720+
LocalInputs::GetStateInfo(_) | LocalInputs::BumpStream => false,
721721
LocalInputs::LocalResolution(lr) if lr.res.is_la_cancel_confirmation() => false,
722722
_ => true,
723723
};

0 commit comments

Comments
 (0)