Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
wenym1 committed Mar 8, 2024
1 parent 6c46c6d commit 3ab8a8f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/stream/src/common/log_store_impl/kv_log_store/serde.rs
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,9 @@ fn deserialize_stream<S: StateStoreReadIter>(
},
)
.map_err(Into::into)
.boxed()
// The `boxed` call was unnecessary in usual build. But when doing cargo doc,
// rustc will panic in auto_trait.rs. May remove it when using future version of tool chain.
}

impl<S: StateStoreReadIter> LogStoreRowOpStream<S> {
Expand Down

0 comments on commit 3ab8a8f

Please sign in to comment.