Skip to content

Commit

Permalink
Check for existence of security plugin (#2065) (#2069)
Browse files Browse the repository at this point in the history
(cherry picked from commit 61d1eb7)

Signed-off-by: Vamsi Manohar <[email protected]>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 089cb83 commit 75a837f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions integ-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ ext {
return repo + "opensearch-security-${securitySnapshotVersion}.zip"
}

File downloadedSecurityPlugin = null
var projectAbsPath = projectDir.getAbsolutePath()
File downloadedSecurityPlugin = Paths.get(projectAbsPath, 'bin', 'opensearch-security-snapshot.zip').toFile()

configureSecurityPlugin = { OpenSearchCluster cluster ->

Expand All @@ -86,15 +87,14 @@ ext {
}
}

var projectAbsPath = projectDir.getAbsolutePath()

// add a check to avoid re-downloading multiple times during single test run
if (downloadedSecurityPlugin == null) {
downloadedSecurityPlugin = Paths.get(projectAbsPath, 'bin', 'opensearch-security-snapshot.zip').toFile()
if (!downloadedSecurityPlugin.exists()) {
download.run {
src getSecurityPluginDownloadLink()
dest downloadedSecurityPlugin
}
} else {
println "Security Plugin File Already Exists"
}

// Config below including files are copied from security demo configuration
Expand Down

0 comments on commit 75a837f

Please sign in to comment.