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:04 UTC

[airavata-django-portal] branch master updated (4a06b00 -> 1ab2de7)

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

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


    from 4a06b00  AIRAVATA-2761 Error reporting for misconfigured dependencies
     new 8d04086  Fixing typo in token refresh call
     new 1ab2de7  Adding loading default Wagtail theme to README

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md                             | 8 +++++++-
 django_airavata/apps/auth/backends.py | 2 +-
 2 files changed, 8 insertions(+), 2 deletions(-)


[airavata-django-portal] 02/02: Adding loading default Wagtail theme to README

Posted by ma...@apache.org.
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 1ab2de7d113e63e3c9a1f1698fe3a0c56b1113d7
Author: Marcus Christie <ma...@iu.edu>
AuthorDate: Fri Jan 4 11:35:52 2019 -0500

    Adding loading default Wagtail theme to README
---
 README.md | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 3e10625..5e16578 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,13 @@ Node.js](https://nodejs.org/en/download/).
     ./build_js.sh
     ```
 
-5.  Run the server
+5.  Load the default Wagtail CMS pages.
+
+    ```
+    python manage.py load_default_gateway
+    ```
+
+6.  Run the server
 
     ```
     python manage.py runserver


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

Posted by ma...@apache.org.
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):