From 26837a35fa074b9d0409585728a85ac8fa76871b Mon Sep 17 00:00:00 2001 From: alafanechere Date: Mon, 18 Sep 2023 17:47:45 +0200 Subject: [PATCH] fix a non awaited coro --- airbyte-ci/connectors/pipelines/pipelines/tests/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-ci/connectors/pipelines/pipelines/tests/common.py b/airbyte-ci/connectors/pipelines/pipelines/tests/common.py index c08a3edc931a..3bff8eb13349 100644 --- a/airbyte-ci/connectors/pipelines/pipelines/tests/common.py +++ b/airbyte-ci/connectors/pipelines/pipelines/tests/common.py @@ -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,