Skip to content

Commit 06b4ae0

Browse files
committed
rename
1 parent 5f9a8e7 commit 06b4ae0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.buildkite/scripts/health-report-tests/bootstrap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
class Bootstrap:
15-
ELASTIC_STACK_RELEASED_VERSION = "https://storage.googleapis.com/artifacts-api/releases/current/"
15+
ELASTIC_STACK_RELEASED_VERSION_URL = "https://storage.googleapis.com/artifacts-api/releases/current/"
1616

1717
def __init__(self) -> None:
1818
f"""
@@ -43,7 +43,7 @@ def __init__(self) -> None:
4343
f"rerun again")
4444

4545
def __resolve_latest_stack_version_for(self, major_version: str) -> str:
46-
resp = util.call_url_with_retry(self.ELASTIC_STACK_RELEASED_VERSION + major_version)
46+
resp = util.call_url_with_retry(self.ELASTIC_STACK_RELEASED_VERSION_URL + major_version)
4747
release_version = resp.text.strip()
4848
print(f"Resolved latest version for {major_version} is {release_version}.")
4949

0 commit comments

Comments
 (0)