mirror of
https://github.com/Leseratte10/acsm-calibre-plugin.git
synced 2024-11-16 11:46:10 +06:00
Don't fail if optional notification server is unavailable
This commit is contained in:
parent
964d4c06eb
commit
3daed133e0
|
@ -706,7 +706,18 @@ def performFulfillmentNotification(fulfillmentResultToken, forceOptional = False
|
|||
# Debug: Print notify request
|
||||
#print(doc_send)
|
||||
|
||||
code, msg = sendRequestDocuRC(doc_send, url)
|
||||
try:
|
||||
code, msg = sendRequestDocuRC(doc_send, url)
|
||||
except:
|
||||
if not critical:
|
||||
print("There was an error during an optional fulfillment notification:")
|
||||
import traceback
|
||||
traceback.print_exc()
|
||||
print("Continuing execution ...")
|
||||
continue
|
||||
else:
|
||||
print("Error during critical notification:")
|
||||
raise
|
||||
|
||||
try:
|
||||
msg = msg.decode("utf-8")
|
||||
|
|
Loading…
Reference in New Issue
Block a user