Skip to content

Commit

Permalink
Accepts https as a property to set securityEnabled flag (#1100)
Browse files Browse the repository at this point in the history
(cherry picked from commit 5ff29d1)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Feb 8, 2024
1 parent f984e2a commit 0aa9412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0aa9412

Please sign in to comment.