Skip to content

Commit

Permalink
log a deprecation WARNING if no remote storage is configured
Browse files Browse the repository at this point in the history
a full test suite run will unvail the set of test cases that don't use remote storage
  • Loading branch information
problame authored and koivunej committed Sep 5, 2023
1 parent 80f10d5 commit b25a5d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pageserver/src/bin/pageserver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ fn create_remote_storage_client(
let config = if let Some(config) = &conf.remote_storage_config {
config
} else {
// No remote storage configured.
tracing::warn!("no remote storage configured, this is a deprecated configuration");
return Ok(None);
};

Expand Down

0 comments on commit b25a5d9

Please sign in to comment.