Skip to content

Commit 971dab1

Browse files
feldera-botblp
authored andcommitted
[ci] apply automatic fixes
Signed-off-by: feldera-bot <feldera-bot@feldera.com>
1 parent 4878a85 commit 971dab1

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/dbsp/src/operator.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,6 @@ pub use transaction_z1::TransactionZ1;
9797
pub use z1::{DelayedFeedback, DelayedNestedFeedback, Z1, Z1Nested};
9898

9999
/// Returns a `NoPersistentId` error if `persistent_id` is `None`.
100-
fn require_persistent_id<'a>(
101-
persistent_id: Option<&'a str>,
102-
id: impl Display,
103-
) -> Result<&'a str, Error> {
100+
fn require_persistent_id(persistent_id: Option<&str>, id: impl Display) -> Result<&str, Error> {
104101
persistent_id.ok_or_else(|| Error::Storage(StorageError::NoPersistentId(id.to_string())))
105102
}

0 commit comments

Comments
 (0)