GUI-report important errors that occur during sync

Important = "isn't a server 5xx error"
This commit is contained in:
miruka 2020-03-09 13:08:09 -04:00
parent 46f3f15694
commit 24180fc346
2 changed files with 10 additions and 5 deletions

View File

@ -3,8 +3,8 @@
## Before release
- Fix highlighted account/room in MainPane
- "exception during sync" aren't caught
- nio ClientTimeout
- Default theme?
- Name
- Update docstrings
- Update TODO.md

View File

@ -40,7 +40,7 @@ from .media_cache import Media, Thumbnail
from .models.items import Event, Member, Room, Upload, UploadStatus
from .models.model_store import ModelStore
from .nio_callbacks import NioCallbacks
from .pyotherside_events import AlertRequested
from .pyotherside_events import AlertRequested, LoopException
if TYPE_CHECKING:
from .backend import Backend
@ -207,7 +207,7 @@ class MatrixClient(nio.AsyncClient):
async def _start(self) -> None:
"""Fetch our user profile and enter the server sync loop."""
"""Fetch our user profile, server config and enter the sync loop."""
def on_profile_response(future) -> None:
"""Update our model `Account` with the received profile details."""
@ -263,9 +263,14 @@ class MatrixClient(nio.AsyncClient):
)
await self.sync_task
break # task cancelled
except Exception:
except Exception as err:
trace = traceback.format_exc().rstrip()
log.error("Exception during sync, restart in 2s:\n%s", trace)
if isinstance(err, MatrixError) and err.http_code >= 500:
log.error("Server failure during sync:\n%s", trace)
else:
LoopException(str(err), err, trace)
await asyncio.sleep(2)