cargo fmt

This commit is contained in:
Christian Schwarz
2023-12-05 19:59:40 +00:00
parent d75470280f
commit cb3dcb06cf
3 changed files with 8 additions and 5 deletions

View File

@@ -141,7 +141,6 @@ impl Key {
}
}
impl std::str::FromStr for Key {
type Err = anyhow::Error;

View File

@@ -1,9 +1,13 @@
use std::pin::Pin;
use futures::SinkExt;
use pageserver_api::{models::{
PagestreamBeMessage, PagestreamFeMessage, PagestreamGetPageRequest, PagestreamGetPageResponse,
}, reltag::RelTag};
use pageserver_api::{
models::{
PagestreamBeMessage, PagestreamFeMessage, PagestreamGetPageRequest,
PagestreamGetPageResponse,
},
reltag::RelTag,
};
use tokio::task::JoinHandle;
use tokio_stream::StreamExt;
use tokio_util::sync::CancellationToken;

View File

@@ -25,8 +25,8 @@ pub mod walingest;
pub mod walrecord;
pub mod walredo;
pub mod failpoint_support;
pub mod client;
pub mod failpoint_support;
use crate::task_mgr::TaskKind;
use camino::Utf8Path;