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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 4e609f1  AIRAVATA-3538 Fix for creating experimentDataDir
4e609f1 is described below

commit 4e609f1196417396b03836b815e86620cee07c73
Author: Marcus Christie <[email protected]>
AuthorDate: Tue Nov 16 17:32:43 2021 -0500

    AIRAVATA-3538 Fix for creating experimentDataDir
---
 django_airavata/apps/api/views.py | 1 +
 requirements.txt                  | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/django_airavata/apps/api/views.py 
b/django_airavata/apps/api/views.py
index c96da61..7e6251b 100644
--- a/django_airavata/apps/api/views.py
+++ b/django_airavata/apps/api/views.py
@@ -233,6 +233,7 @@ class ExperimentViewSet(mixins.CreateModelMixin,
             experiment_util.launch(request, experiment_id)
             return Response({'success': True})
         except Exception as e:
+            log.exception(f"Failed to launch experiment {experiment_id}")
             return Response({'success': False, 'errorMessage': str(e)})
 
     @action(methods=['get'], detail=True)
diff --git a/requirements.txt b/requirements.txt
index f5a90fa..4562760 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -20,7 +20,7 @@ google-api-python-client==1.12.8
 grpcio-tools==1.34.1
 grpcio==1.34.1
 
-airavata-django-portal-sdk==1.3.dev1
+airavata-django-portal-sdk==1.3.dev2
 airavata-python-sdk==1.0.1
 
 -e "."

Reply via email to