diff options
author | David Blajda <blajda@hotmail.com> | 2018-12-20 00:09:49 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2018-12-20 00:09:49 +0000 |
commit | 61507ec1fa61fe134547a7eac9541375c6215b33 (patch) | |
tree | cf7fb84300454680dd0acd06434fa23a71d6211f /src/helix/namespaces/auth.rs | |
parent | a8e42248cf617767dfd890c0832ea233bb4608fc (diff) |
Replace channel based barrier with shared future based barrier
Diffstat (limited to 'src/helix/namespaces/auth.rs')
-rw-r--r-- | src/helix/namespaces/auth.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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) } |