Skip to content

Commit

Permalink
Accepts https as a property to set securityEnabled flag
Browse files Browse the repository at this point in the history
Signed-off-by: Darshit Chanpura <[email protected]>
  • Loading branch information
DarshitChanpura committed Feb 8, 2024
1 parent 4d8ef69 commit bc10724
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 @@ -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
Expand Down

0 comments on commit bc10724

Please sign in to comment.