You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/01/04 16:36:05 UTC

[airavata-django-portal] 01/02: Fixing typo in token refresh call

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git

commit 8d04086a16bdeadca3f01ecde7fabf03b016c220
Author: Marcus Christie <ma...@iu.edu>
AuthorDate: Fri Jan 4 11:35:08 2019 -0500

    Fixing typo in token refresh call
---
 django_airavata/apps/auth/backends.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/django_airavata/apps/auth/backends.py b/django_airavata/apps/auth/backends.py
index de1cdb1..faa6a7b 100644
--- a/django_airavata/apps/auth/backends.py
+++ b/django_airavata/apps/auth/backends.py
@@ -101,7 +101,7 @@ class KeycloakBackend(object):
         token = oauth2_session.refresh_token(token_url=token_url,
                                              refresh_token=refresh_token,
                                              auth=auth,
-                                             verify_ssl=verify_ssl)
+                                             verify=verify_ssl)
         return token
 
     def _process_token(self, request, token):