From bc10724d39ced73e9f05ab94a554033d338784ce Mon Sep 17 00:00:00 2001 From: Darshit Chanpura Date: Thu, 8 Feb 2024 16:03:44 -0500 Subject: [PATCH] Accepts https as a property to set securityEnabled flag Signed-off-by: Darshit Chanpura --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 32928b03d..2fedc41de 100644 --- a/build.gradle +++ b/build.gradle @@ -328,7 +328,7 @@ ext.getPluginResource = { download_to_folder, download_from_src -> // === Setup security test === // This flag indicates the existence of security plugin -def securityEnabled = System.getProperty("security", "false") == "true" +def securityEnabled = System.getProperty("security", "false") == "true" || System.getProperty("https", "false") == "true" afterEvaluate { testClusters.integTest.nodes.each { node -> def plugins = node.plugins