From 0aa9412b3b747d8ea89bb4e6936b9a9ab93b332a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 8 Feb 2024 22:37:05 +0000 Subject: [PATCH] Accepts https as a property to set securityEnabled flag (#1100) (cherry picked from commit 5ff29d119e5e41ad45df88d6518e150ef5a2fa4d) Signed-off-by: github-actions[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 302be4e7c..27ba7da03 100644 --- a/build.gradle +++ b/build.gradle @@ -325,7 +325,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