push采用try避免失败导致程序崩溃

This commit is contained in:
CSSC-WORK\murmur 2024-01-05 16:04:19 +08:00
parent 5c72d169d5
commit 1e2b50cbdb

View File

@ -68,6 +68,7 @@ def s2wx(title="",description="", content=""):
logger.debug("msgpusher {}",res) logger.debug("msgpusher {}",res)
except: except:
logger.error("msgpusher error"); logger.error("msgpusher error");
try:
res = requests.post("http://106.52.193.182:10004/message?token=AK9uikNvF7HxlGG", json={ res = requests.post("http://106.52.193.182:10004/message?token=AK9uikNvF7HxlGG", json={
"title": title, "title": title,
"description": description, "description": description,
@ -78,7 +79,9 @@ def s2wx(title="",description="", content=""):
}} }}
}) })
logger.debug("Gotify {}",res) logger.debug("Gotify {}",res)
return except:
logger.error("Gotify error");
try:
# res = requests.post("http://106.52.193.182:10004/message?token=AK9uikNvF7HxlGG", json={ # res = requests.post("http://106.52.193.182:10004/message?token=AK9uikNvF7HxlGG", json={
res = requests.post("http://127.0.0.1:10004/message?token=AQNbWzNcL.DB.hP", json={ res = requests.post("http://127.0.0.1:10004/message?token=AQNbWzNcL.DB.hP", json={
"title": title, "title": title,
@ -90,6 +93,9 @@ def s2wx(title="",description="", content=""):
}} }}
}) })
logger.debug("Gotify {}",res) logger.debug("Gotify {}",res)
except:
logger.error("Gotify (127.0.0.1) error");
# try: # try:
# try: # try:
# res = res.json() # res = res.json()