Skip to content

Commit 71306b3

Browse files
author
Kacper Muda
authored
FixGoogleCampaignManagerReportSensor with QUEUED status (#28735)
1 parent c67f4af commit 71306b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

β€Žairflow/providers/google/marketing_platform/sensors/campaign_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def poke(self, context: Context) -> bool:
7373
)
7474
response = hook.get_report(profile_id=self.profile_id, report_id=self.report_id, file_id=self.file_id)
7575
self.log.info("Report status: %s", response["status"])
76-
return response["status"] != "PROCESSING"
76+
return response["status"] not in ("PROCESSING", "QUEUED")
7777

7878
def __init__(
7979
self,

0 commit comments

Comments
 (0)