temporarily increase vault wait
This is temporary fix to allow more time for the AWS credentials to be progagated by the AWS API. Following this we will implement a retry mechanism to keep trying to find the dependency for an amount of time Original commit: elastic/x-pack-elasticsearch@a300b8698b
This commit is contained in:
parent
2f5865756b
commit
fe933b027e
|
@ -71,7 +71,7 @@ LogicalResponse secret = vault.logical().read("aws-dev/creds/prelertartifacts")
|
||||||
String mlAwsAccessKey = secret.data.get('access_key')
|
String mlAwsAccessKey = secret.data.get('access_key')
|
||||||
String mlAwsSecretKey = secret.data.get('secret_key')
|
String mlAwsSecretKey = secret.data.get('secret_key')
|
||||||
// Sleeping to give AWS a chance to propagate the credentials
|
// Sleeping to give AWS a chance to propagate the credentials
|
||||||
sleep(3000)
|
sleep(10000)
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
|
|
Loading…
Reference in New Issue