You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I get SkypeMessageEvent I have error like this SkypeApiException ('404 response from POST https://azeus1-client-s.gateway.messenger.live.com/v1/users/ME/conversations/ALL/messages/1737966460884/ack', <Response [404]>) on event.ack() place
My code is
def onEvent(self, event):
if isinstance(event, SkypeMessageEvent):
with self.resending_appeared:
msg = event.msg
try:
self.request_save_message(msg, msg.chatId)
except Exception as error:
logging.error(f"Error happened in the skype loop {error}")
self.error_in_thread = sys.exc_info()
finally:
event.ack()
self.resending_appeared.notify_all()
logging.error doesn't return anything, so exception wasn't happened.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
When I get SkypeMessageEvent I have error like this
SkypeApiException ('404 response from POST https://azeus1-client-s.gateway.messenger.live.com/v1/users/ME/conversations/ALL/messages/1737966460884/ack', <Response [404]>)
onevent.ack()
placeMy code is
logging.error doesn't return anything, so exception wasn't happened.
Beta Was this translation helpful? Give feedback.
All reactions