From 4e6841bc5e91649427bfd795a97e6007a0eee700 Mon Sep 17 00:00:00 2001 From: Dom Date: Wed, 17 Feb 2021 16:53:00 +0000 Subject: [PATCH] refactor: derive Clone for API client --- influxdb_iox_client/src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/influxdb_iox_client/src/client.rs b/influxdb_iox_client/src/client.rs index 7a5e316f2b..bb4523481e 100644 --- a/influxdb_iox_client/src/client.rs +++ b/influxdb_iox_client/src/client.rs @@ -40,7 +40,7 @@ pub use flight::PerformQuery; /// .expect("failed to create database"); /// # } /// ``` -#[derive(Debug)] +#[derive(Debug, Clone)] pub struct Client { pub(crate) http: reqwest::Client,