Skip to content

Commit

Permalink
Appease clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
arpad-m committed Aug 11, 2023
1 parent a0b9bda commit 99a755e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pageserver/src/tenant/timeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3737,9 +3737,9 @@ impl Timeline {
}

fail_point!("delta-layer-writer-fail-before-finish", |_| {
Result::<_>::Err(
anyhow::anyhow!("failpoint delta-layer-writer-fail-before-finish").into(),
)
Result::<_>::Err(anyhow::anyhow!(
"failpoint delta-layer-writer-fail-before-finish"
))
});

writer.as_mut().unwrap().put_value(key, lsn, value)?;
Expand Down

0 comments on commit 99a755e

Please sign in to comment.