Skip to content

Commit 26f44a7

Browse files
authored
fix typo; update python version (localstack#1068)
1 parent b6e7e3f commit 26f44a7

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ infrastructure in your test setup method and then clean up everything in your te
252252
from localstack.services import infra
253253
254254
def setup():
255-
infra.start_infra(asyncronous=True)
255+
infra.start_infra(asynchronous=True)
256256
257257
def teardown():
258258
infra.stop_infra()

localstack/services/infra.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,12 +468,12 @@ def start_infra(asynchronous=False, apis=None):
468468
# install libs if not present
469469
install.install_components(apis)
470470
# Some services take a bit to come up
471-
sleep_time = 3
471+
sleep_time = 5
472472
# start services
473473
thread = None
474474

475475
if 'elasticsearch' in apis or 'es' in apis:
476-
sleep_time = max(sleep_time, 8)
476+
sleep_time = max(sleep_time, 10)
477477

478478
# loop through plugins and start each service
479479
for name, plugin in SERVICE_PLUGINS.items():

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
'Programming Language :: Python :: 3.3',
7272
'Programming Language :: Python :: 3.4',
7373
'Programming Language :: Python :: 3.6',
74+
'Programming Language :: Python :: 3.7',
7475
'License :: OSI Approved :: Apache Software License',
7576
'Topic :: Software Development :: Testing',
7677
]

0 commit comments

Comments
 (0)