diff options
author | Alex Auvolat <alex@adnab.me> | 2020-04-18 19:39:08 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-04-18 19:39:57 +0200 |
commit | 4ba54ccfca2ff8e56c58d0a652de256428282490 (patch) | |
tree | d98bc1bcb565bff4d018b252f5f1397253f9f697 /src/rpc_client.rs | |
parent | bd1618e78e4c4305a73bdd40004de2abe46c3ceb (diff) | |
download | garage-4ba54ccfca2ff8e56c58d0a652de256428282490.tar.gz garage-4ba54ccfca2ff8e56c58d0a652de256428282490.zip |
Reorder imports.
Trying to separate:
1. Stuff for handling the swarm of nodes and generic table data replication
2. Stuff for the object store core application: metadata tables and block management
3. Stuff for the S3 API
Diffstat (limited to 'src/rpc_client.rs')
-rw-r--r-- | src/rpc_client.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpc_client.rs b/src/rpc_client.rs index 6d26d86a..95288269 100644 --- a/src/rpc_client.rs +++ b/src/rpc_client.rs @@ -12,12 +12,12 @@ use hyper::client::{Client, HttpConnector}; use hyper::{Body, Method, Request, StatusCode}; use tokio::sync::watch; -use crate::background::*; +use crate::background::BackgroundRunner; use crate::data::*; use crate::error::Error; use crate::membership::Status; use crate::rpc_server::RpcMessage; -use crate::server::*; +use crate::server::TlsConfig; use crate::tls_util; pub struct RpcClient<M: RpcMessage> { |