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:
Colin Goodheart-Smithe 2017-02-08 18:15:14 +00:00
parent 2f5865756b
commit fe933b027e
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ LogicalResponse secret = vault.logical().read("aws-dev/creds/prelertartifacts")
String mlAwsAccessKey = secret.data.get('access_key')
String mlAwsSecretKey = secret.data.get('secret_key')
// Sleeping to give AWS a chance to propagate the credentials
sleep(3000)
sleep(10000)
repositories {
maven {