Skip to content

Commit

Permalink
FixGoogleCampaignManagerReportSensor with QUEUED status (#28735)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kacper Muda authored Jan 9, 2023
1 parent c67f4af commit 71306b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def poke(self, context: Context) -> bool:
)
response = hook.get_report(profile_id=self.profile_id, report_id=self.report_id, file_id=self.file_id)
self.log.info("Report status: %s", response["status"])
return response["status"] != "PROCESSING"
return response["status"] not in ("PROCESSING", "QUEUED")

def __init__(
self,
Expand Down

0 comments on commit 71306b3

Please sign in to comment.
  翻译: