We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8d9939 commit 75aa19aCopy full SHA for 75aa19a
pageserver/src/tenant/timeline/offload.rs
@@ -47,15 +47,12 @@ pub(crate) async fn offload_timeline(
47
match is_archived {
48
Some(true) => (),
49
Some(false) => {
50
- tracing::warn!(?is_archived, "tried offloading a non-archived timeline");
+ tracing::warn!("tried offloading a non-archived timeline");
51
return Err(OffloadError::NotArchived);
52
}
53
None => {
54
// This is legal: calls to this function can race with the timeline shutting down
55
- tracing::info!(
56
- ?is_archived,
57
- "tried offloading a timeline whose remote storage is not initialized"
58
- );
+ tracing::info!("tried offloading a timeline whose remote storage is not initialized");
59
return Err(OffloadError::Cancelled);
60
61
0 commit comments