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.git
The following commit(s) were added to refs/heads/master by this push:
new 161dd0a21b AIRAVATA-3694 Fix comparison when var is a string
161dd0a21b is described below
commit 161dd0a21b3853446f9d1b35755bdc25af6e5d72
Author: Marcus Christie <[email protected]>
AuthorDate: Tue Jun 6 13:49:34 2023 -0400
AIRAVATA-3694 Fix comparison when var is a string
---
dev-tools/ansible/roles/django/tasks/main.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-tools/ansible/roles/django/tasks/main.yml
b/dev-tools/ansible/roles/django/tasks/main.yml
index 523789105d..0ede03b774 100644
--- a/dev-tools/ansible/roles/django/tasks/main.yml
+++ b/dev-tools/ansible/roles/django/tasks/main.yml
@@ -371,4 +371,4 @@
mode: 0755
become: yes
become_user: root
- when: django_user_data_archive_max_age_days and
django_user_data_archive_max_age_days > 0
+ when: django_user_data_archive_max_age_days and
django_user_data_archive_max_age_days|int > 0