Skip to content

Commit

Permalink
Merge pull request #21 from synkd/enable_failover_when_export_times_out
Browse files Browse the repository at this point in the history
Modify content and return value after timeout
  • Loading branch information
synkd authored Sep 11, 2023
2 parents f5b3433 + 4747d3e commit 2852b72
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion manifester/manifester.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,8 @@ def trigger_manifest_export(self):
break
request_count += 1
if limit_exceeded:
return
self.content = None
return self
export_job = export_job.json()
export_href = export_job["body"]["href"]
manifest = simple_retry(
Expand Down

0 comments on commit 2852b72

Please sign in to comment.