Skip to content

Commit

Permalink
Merge 6d97e0f into 0575cbd
Browse files Browse the repository at this point in the history
  • Loading branch information
whummer committed Jan 28, 2019
2 parents 0575cbd + 6d97e0f commit 1410c17
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ Simply add the following dependency to your `pom.xml` file:
<dependency>
<groupId>cloud.localstack</groupId>
<artifactId>localstack-utils</artifactId>
<version>0.1.15</version>
<version>0.1.16</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion localstack/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
LOCALHOST = 'localhost'

# version of the Maven dependency with Java utility code
LOCALSTACK_MAVEN_VERSION = '0.1.15'
LOCALSTACK_MAVEN_VERSION = '0.1.16'

# map of default service APIs and ports to be spun up (fetch map from localstack_client)
DEFAULT_SERVICE_PORTS = localstack_client.config.get_service_ports()
Expand Down
2 changes: 1 addition & 1 deletion localstack/ext/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>cloud.localstack</groupId>
<artifactId>localstack-utils</artifactId>
<packaging>jar</packaging>
<version>0.1.15</version>
<version>0.1.16</version>
<name>localstack-utils</name>

<description>Java utilities for the LocalStack platform.</description>
Expand Down
2 changes: 1 addition & 1 deletion localstack/services/infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def check_aws_credentials():
# -----------------------------


def check_infra(retries=8, expect_shutdown=False, apis=None, additional_checks=[]):
def check_infra(retries=10, expect_shutdown=False, apis=None, additional_checks=[]):
try:
print_error = retries <= 0

Expand Down

0 comments on commit 1410c17

Please sign in to comment.