Skip to content

Commit

Permalink
fix a non awaited coro
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere committed Sep 18, 2023
1 parent 82eb7d1 commit 26837a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airbyte-ci/connectors/pipelines/pipelines/tests/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ async def _run(self, *args, **kwargs) -> StepResult:
StepStatus.FAILURE,
stdout="Connector is certified but does not use our base image. Please set connectorBuildOptions.baseImage in the connector metadata.",
)
has_dockerfile = "Dockerfile" in await self.context.get_connector_dir(include="Dockerfile").entries()
has_dockerfile = "Dockerfile" in await (await self.context.get_connector_dir(include="Dockerfile")).entries()
if has_dockerfile:
return StepResult(
self,
Expand Down

0 comments on commit 26837a3

Please sign in to comment.