This is an automated email from the ASF dual-hosted git repository. yasithdev pushed a commit to branch feat/generic-experiment-launcher in repository https://gitbox.apache.org/repos/asf/airavata-portals.git
commit f6d95cc63a43aaf887c5d83cb9219558bb94443f Author: yasithdev <[email protected]> AuthorDate: Fri Apr 24 23:27:36 2026 -0400 chore(launcher): default FEATURE_GENERIC_LAUNCHER to on --- airavata-django-portal/django_airavata/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airavata-django-portal/django_airavata/settings.py b/airavata-django-portal/django_airavata/settings.py index 0a1b99268..991d6ef3a 100644 --- a/airavata-django-portal/django_airavata/settings.py +++ b/airavata-django-portal/django_airavata/settings.py @@ -625,7 +625,7 @@ if 'GATEWAY_ID' not in dir(): # Generic experiment launcher feature flags -FEATURE_GENERIC_LAUNCHER = os.environ.get("FEATURE_GENERIC_LAUNCHER", "False").lower() == "true" +FEATURE_GENERIC_LAUNCHER = os.environ.get("FEATURE_GENERIC_LAUNCHER", "True").lower() == "true" LAUNCHER_CLIENT_STUB = os.environ.get("LAUNCHER_CLIENT_STUB", "True").lower() == "true"
