mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-29 11:00:38 +00:00
@@ -723,6 +723,9 @@ impl Timeline {
|
||||
v2_exists
|
||||
);
|
||||
}
|
||||
Err(e) if e.is_cancel() => {
|
||||
// Cancellation errors are fine to ignore, do not log.
|
||||
}
|
||||
Err(e) => {
|
||||
tracing::warn!("failed to get rel exists in v2: {e}");
|
||||
}
|
||||
@@ -863,6 +866,9 @@ impl Timeline {
|
||||
rels_v2.len()
|
||||
);
|
||||
}
|
||||
Err(e) if e.is_cancel() => {
|
||||
// Cancellation errors are fine to ignore, do not log.
|
||||
}
|
||||
Err(e) => {
|
||||
tracing::warn!("failed to list rels in v2: {e}");
|
||||
}
|
||||
@@ -2600,6 +2606,12 @@ impl DatadirModification<'_> {
|
||||
);
|
||||
}
|
||||
}
|
||||
Err(WalIngestError {
|
||||
kind: WalIngestErrorKind::Cancelled,
|
||||
..
|
||||
}) => {
|
||||
// Cancellation errors are fine to ignore, do not log.
|
||||
}
|
||||
Err(e) => {
|
||||
tracing::warn!("error dropping rels: {}", e);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user