File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
services/web/server/src/simcore_service_webserver/garbage_collector Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1212from tenacity .before_sleep import before_sleep_log
1313from tenacity .wait import wait_exponential
1414
15- from ..api_keys . api_keys_service import prune_expired_api_keys
15+ from ..api_keys import api_keys_service
1616
1717logger = logging .getLogger (__name__ )
1818
@@ -32,7 +32,7 @@ async def _run_task(app: web.Application):
3232
3333 It is resilient, i.e. if update goes wrong, it waits a bit and retries
3434 """
35- if deleted := await prune_expired_api_keys (app ):
35+ if deleted := await api_keys_service . prune_expired_api_keys (app ):
3636 # broadcast force logout of user_id
3737 for api_key in deleted :
3838 logger .info ("API-key %s expired and was removed" , f"{ api_key = } " )
You can’t perform that action at this time.
0 commit comments