fnp
/
redakcja.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a8b54a
)
fix demo retries
author
Radek Czajka
<rczajka@rczajka.pl>
Tue, 10 Oct 2023 09:15:39 +0000
(11:15 +0200)
committer
Radek Czajka
<rczajka@rczajka.pl>
Tue, 10 Oct 2023 09:15:39 +0000
(11:15 +0200)
src/depot/publishers/woblink.py
patch
|
blob
|
history
diff --git
a/src/depot/publishers/woblink.py
b/src/depot/publishers/woblink.py
index
f77d618
..
c3ec7a5
100644
(file)
--- a/
src/depot/publishers/woblink.py
+++ b/
src/depot/publishers/woblink.py
@@
-565,6
+565,12
@@
class Woblink(BasePublisher):
).json()['jobId']
try:
file_id = self.wait_for_job(job_id)
+ if check:
+ self.wait_for_job(
+ self.session.get(
+ self.CHECK_DEMO_URL % (file_format, woblink_id)
+ ).json()['jobId']
+ )
except AssertionError:
if percent < 50:
percent += 10
@@
-573,12
+579,6
@@
class Woblink(BasePublisher):
else:
break
- if check:
- self.wait_for_job(
- self.session.get(
- self.CHECK_DEMO_URL % (file_format, woblink_id)
- ).json()['jobId']
- )
return file_id
def send_epub(self, woblink_id, doc, gallery_path, fundraising=None):