Build: Remove hack to touch keystore before it is created
This will be fixed in ES with elastic/elasticsearchelastic/elasticsearch#15089 Original commit: elastic/x-pack-elasticsearch@55b42a7ad4
This commit is contained in:
parent
ad697c077e
commit
a67aebc9fc
|
@ -13,11 +13,6 @@ File cert = new File(project.buildDir, 'cert/test-node.csr')
|
|||
File signedCert = new File(project.buildDir, 'cert/test-node-signed.csr')
|
||||
File keystore = new File(project.buildDir, 'keystore/test-node.jks')
|
||||
|
||||
// we touch keystore because otherwise it fails, extraConfigFile does not exist
|
||||
// this tricks some broken compile-time check into just moving along: we nuke this stuff before we actually generate
|
||||
keystore.parentFile.mkdirs()
|
||||
keystore.createNewFile()
|
||||
|
||||
String caConfigData = """
|
||||
[ ca ]
|
||||
default_ca = CA_default
|
||||
|
@ -187,4 +182,4 @@ integTest {
|
|||
return true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue