Skip to content
Snippets Groups Projects
Commit 5caa7093 authored by Viktor Vorobev's avatar Viktor Vorobev
Browse files

[NRRPLT-0000] Fix timeout binding

parent 17ab37e5
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ export class Authenticator extends BaseAuthenticator {
constructor(private config) {
super();
setTimeout(this.cleanCache, CACHE_CLEANUP_INTEVAL_MS);
setTimeout(this.cleanCache.bind(this), CACHE_CLEANUP_INTEVAL_MS);
}
checkToken(token: string) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment