Skip to content

Commit

Permalink
[Backport 2.12] Accepts https as a property to set securityEnabled fl…
Browse files Browse the repository at this point in the history
…ag (#1103)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 269f9f8 commit 54f44a5
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 54f44a5

Please sign in to comment.