Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opensearch-project/opensearch-migrations
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b76a164a347b2c69e8b1a5e56513ea5160d472ea
Choose a base ref
..
head repository: opensearch-project/opensearch-migrations
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5c3d165dfc25f0487dfcc926c841b713d3cc2147
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 TrafficCapture/dockerSolution/build.gradle
4 changes: 2 additions & 2 deletions TrafficCapture/dockerSolution/build.gradle
Original file line number Diff line number Diff line change
@@ -46,8 +46,8 @@ dockerFilesForExternalServices.each { projectName, dockerImageName ->
} else {
inputDir = project.file("src/main/docker/${escapedProjectName}")
}
def hash = calculateDockerHash(inputDir)
images.add("migrations/${dockerImageName}:$hash")
def hashNonce = CommonUtils.calculateDockerHash(project.fileTree(inputDir))
images.add("migrations/${dockerImageName}:$hashNonce")
images.add("migrations/${dockerImageName}:latest")
}
}