Skip to content

Commit e4c26e8

Browse files
authored
live-test: improve error message when the selected connection did not run the control version (#45335)
1 parent 8d7b191 commit e4c26e8

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

airbyte-ci/connectors/live-tests/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,11 @@ The traffic recorded on the control connector is passed to the target connector
279279

280280
## Changelog
281281

282+
### 0.18.8
283+
284+
Improve error message when failing to retrieve connection.
285+
Ask to double-check that a sync ran with the control version on the selected connection.
286+
282287
### 0.18.7
283288

284289
Improve error message when failing to retrieve connection.

airbyte-ci/connectors/live-tests/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "live-tests"
7-
version = "0.18.7"
7+
version = "0.18.8"
88
description = "Contains utilities for testing connectors against live data."
99
authors = ["Airbyte <[email protected]>"]
1010
license = "MIT"

airbyte-ci/connectors/live-tests/src/live_tests/commons/connection_objects_retrieval.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def _get_connection_objects_from_retrieved_objects(
240240
)
241241
elif retrieved_source_docker_image.split(":")[1] != source_docker_image_tag:
242242
raise InvalidConnectionError(
243-
f"The provided docker image tag ({source_docker_image_tag}) does not match the image tag for connection ID {connection_id}. Please double check that this connection is using the correct image tag. Connection URL: {connection_url}"
243+
f"The provided docker image tag ({source_docker_image_tag}) does not match the image tag for connection ID {connection_id}. Please double check that this connection is using the correct image tag and the latest job ran using this version. Connection URL: {connection_url}"
244244
)
245245

246246
return ConnectionObjects(

0 commit comments

Comments
 (0)