diff --git a/src/http.rs b/src/http.rs index eb78ae5..5c9c825 100644 --- a/src/http.rs +++ b/src/http.rs @@ -55,7 +55,7 @@ impl Client for HttpClient { let _ = self .client - .post(&format!("{}{}", self.host, path)) + .post(format!("{}{}", self.host, path)) .basic_auth(write_key, Some("")) .json(&msg) .send()