From 0fb3851a2bb21dad9287ed8b838c67798413edca Mon Sep 17 00:00:00 2001 From: zicklam Date: Wed, 8 May 2019 08:21:04 +0200 Subject: [PATCH] webhook_notification set default for var 'disable_ssl_verification' --- awx/main/notifications/webhook_backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/notifications/webhook_backend.py b/awx/main/notifications/webhook_backend.py index e4fdc7de4a..648da40df8 100644 --- a/awx/main/notifications/webhook_backend.py +++ b/awx/main/notifications/webhook_backend.py @@ -15,7 +15,7 @@ logger = logging.getLogger('awx.main.notifications.webhook_backend') class WebhookBackend(AWXBaseEmailBackend): init_parameters = {"url": {"label": "Target URL", "type": "string"}, - "disable_ssl_verification": {"label": "Verify SSL", "type": "bool"}, + "disable_ssl_verification": {"label": "Verify SSL", "type": "bool", "default": false}, "headers": {"label": "HTTP Headers", "type": "object"}} recipient_parameter = "url" sender_parameter = None