From 61507ec1fa61fe134547a7eac9541375c6215b33 Mon Sep 17 00:00:00 2001 From: David Blajda Date: Thu, 20 Dec 2018 00:09:49 +0000 Subject: Replace channel based barrier with shared future based barrier --- src/helix/namespaces/auth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/helix/namespaces/auth.rs') diff --git a/src/helix/namespaces/auth.rs b/src/helix/namespaces/auth.rs index 8ad7956..5efc0fe 100644 --- a/src/helix/namespaces/auth.rs +++ b/src/helix/namespaces/auth.rs @@ -39,5 +39,5 @@ pub fn client_credentials(client: Client, secret: &str) params.insert("grant_type".to_owned(), "client_credentials".to_owned()); params.insert("scope".to_owned(), "".to_owned()); - ApiRequest::new(url, params, client, Method::POST) + ApiRequest::new(url, params, client, Method::POST, None) } -- cgit v1.2.3