Skip to content

Commit 11a3b4a

Browse files
committed
fix a non awaited coro
1 parent 9bbd2e2 commit 11a3b4a

File tree

1 file changed

+1
-1
lines changed
  • airbyte-ci/connectors/pipelines/pipelines/tests

1 file changed

+1
-1
lines changed

airbyte-ci/connectors/pipelines/pipelines/tests/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ async def _run(self, *args, **kwargs) -> StepResult:
299299
StepStatus.FAILURE,
300300
stdout="Connector is certified but does not use our base image. Please set connectorBuildOptions.baseImage in the connector metadata.",
301301
)
302-
has_dockerfile = "Dockerfile" in await self.context.get_connector_dir(include="Dockerfile").entries()
302+
has_dockerfile = "Dockerfile" in await (await self.context.get_connector_dir(include="Dockerfile")).entries()
303303
if has_dockerfile:
304304
return StepResult(
305305
self,

0 commit comments

Comments
 (0)