Skip to content

Commit

Permalink
fix: correct placement for parens, dot
Browse files Browse the repository at this point in the history
  • Loading branch information
koivunej committed Aug 17, 2023
1 parent 161d51e commit 7d2f9ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pageserver/src/tenant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1104,9 +1104,9 @@ impl Tenant {
{
match e {
LoadLocalTimelineError::Load(source) => {
return Err(anyhow::anyhow!(source).with_context(|| {
return Err(anyhow::anyhow!(source)).with_context(|| {
format!("Failed to load local timeline: {timeline_id}")
}))
})
}
LoadLocalTimelineError::ResumeDeletion(source) => {
// Make sure resumed deletion wont fail loading for entire tenant.
Expand Down

0 comments on commit 7d2f9ea

Please sign in to comment.