Skip to content

Commit 364fd06

Browse files
authored
avoid deprecated health endpoint (#32)
1 parent d9207e2 commit 364fd06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def __init__(self, returncode, stderr):
142142

143143
def _localstack_health_check():
144144
"""Check if the localstack service is healthy"""
145-
localstack_health_url = "http://localhost:4566/health"
145+
localstack_health_url = "http://localhost:4566/_localstack/health"
146146
session = requests.Session()
147147
retry = Retry(connect=3, backoff_factor=2)
148148
adapter = HTTPAdapter(max_retries=retry)

0 commit comments

Comments
 (0)