From 4ba54ccfca2ff8e56c58d0a652de256428282490 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Sat, 18 Apr 2020 19:39:08 +0200 Subject: 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 --- src/rpc_client.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/rpc_client.rs') 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 { -- cgit v1.2.3