diff --git a/actioner/web/healthcheck.py b/actioner/web/healthcheck.py index bfdda55..119af8d 100644 --- a/actioner/web/healthcheck.py +++ b/actioner/web/healthcheck.py @@ -1,9 +1,11 @@ from aiohttp import web -from actioner.clients import github +from actioner.clients import github, todoist async def healthcheck(request): + todoist.user.sync() return web.json_response({ - 'github': github.get_user().login + 'github': github.get_user().login, + 'todoist': todoist.user.get_id() })