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 2018/11/19 20:44:06 UTC

[airavata] 01/02: Limiting simultaneous Django deploys to 1.

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.git

commit 1252b1dc0ae309387a5b18dfd1c8009754781cd2
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Mon Nov 19 15:38:50 2018 -0500

    Limiting simultaneous Django deploys to 1.
---
 dev-tools/ansible/django.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tools/ansible/django.yml b/dev-tools/ansible/django.yml
index 5cd3a85..223e746 100644
--- a/dev-tools/ansible/django.yml
+++ b/dev-tools/ansible/django.yml
@@ -28,8 +28,8 @@
 
 # Create a django virtual host
 - hosts: django
-  # Limit to deploying to only 3 hosts at once. This is to lighten the load during the JavaScript build step.
-  serial: 3
+  # Limit to deploying to only 1 host at once. This is to lighten the load during the JavaScript build step.
+  serial: 1
   name: Create/update Django portal for gateway
   roles:
     - django