Skip to content

Commit

Permalink
HSEARCH-3653 Adding missing @OverRide annotations in Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere authored and fax4ever committed Sep 25, 2019
1 parent 0a6663b commit 388ee75
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Jenkinsfile
Expand Up @@ -654,12 +654,14 @@ class CompilerBuildEnvironment extends BuildEnvironment {
class DatabaseBuildEnvironment extends BuildEnvironment {
String dbName
String mavenProfile
@Override
String getTag() { "database-$dbName" }
}

class EsLocalBuildEnvironment extends BuildEnvironment {
String versionRange
String mavenProfile
@Override
String getTag() { "elasticsearch-local-$versionRange" }
}

Expand All @@ -668,6 +670,7 @@ class EsAwsBuildEnvironment extends BuildEnvironment {
String mavenProfile
String endpointUrl = null
String awsRegion = null
@Override
String getTag() { "elasticsearch-aws-$version" }
String getNameEmbeddableVersion() {
version.replaceAll('\\.', '')
Expand Down

0 comments on commit 388ee75

Please sign in to comment.