We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5caac46 + acf38aa commit 7fb7919Copy full SHA for 7fb7919
2 files changed
pyatlan/client/aio/workflow.py
@@ -243,7 +243,7 @@ async def _find_runs(
243
return AsyncWorkflowSearchResponse(
244
client=self._client,
245
endpoint=endpoint,
246
- criteria=request_obj,
+ criteria=query,
247
start=from_,
248
size=size,
249
**sync_response,
tests/integration/aio/test_workflow_client.py
@@ -191,6 +191,8 @@ async def test_workflow_get_runs_and_stop(
191
[AtlanWorkflowPhase.FAILED], started_at="now-1h"
192
)
193
assert runs_status
194
+ async for _ in runs_status:
195
+ pass
196
197
198
async def test_workflow_get_all_scheduled_runs(
0 commit comments