Skip to content

Commit 09ab571

Browse files
committed
ignore non-json stdout lines
1 parent 54cbee0 commit 09ab571

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

airbyte_cdk/utils/docker.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,8 +346,7 @@ def verify_connector_image(
346346
found_spec_output = True
347347

348348
except json.JSONDecodeError as e:
349-
logger.error(f"Invalid JSON output from spec command: {e}: {line}")
350-
return False
349+
logger.warning(f"Invalid JSON output from spec command: {e}: {line}")
351350

352351
if not found_spec_output:
353352
logger.error("No valid JSON output found for spec command.")

0 commit comments

Comments
 (0)