Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira committed Oct 18, 2023
1 parent b7d5692 commit 41d079d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/repository-hdfs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ tasks.withType(RestIntegTestTask).configureEach { testTask ->

testClusters.matching { it.name == testTask.name }.configureEach {
if (testTask.name.contains("Secure")) {
systemProperty "java.security.krb5.conf", configurations.krb5Config.singleFile.getPath(), IGNORE_VALUE
systemProperty "java.security.krb5.conf", { configurations.krb5Config.singleFile.getPath() }, IGNORE_VALUE
extraConfigFile(
"repository-hdfs/krb5.keytab",
new File(project.configurations.krb5Keytabs.singleFile, "elasticsearch.keytab"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ tasks.withType(Test).configureEach {
doFirst {
delete(repoDir)
}
nonInputPrperties.systemProperty 'tests.path.repo', repoDir
nonInputProperties.systemProperty 'tests.path.repo', repoDir
}

testClusters.matching { it.name == "javaRestTest" }.configureEach {
Expand Down

0 comments on commit 41d079d

Please sign in to comment.