1
0
Fork 0

disable checkSS interval function

refactor/models
Matthew 2020-03-28 04:59:23 -04:00
parent 3f7ead1db4
commit ffa3d24f89
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,5 @@
/* eslint-disable consistent-return */
/* eslint-disable no-unreachable */
/* eslint-disable no-await-in-loop */
import axios from 'axios';
import { inspect } from 'util';
@ -5,6 +7,7 @@ import { Client } from '..';
let interval: NodeJS.Timeout;
export default function checkSS(client: Client) {
return;
interval = setInterval(async () => {
try {
const accounts = await client.db.Account.find();

View File

@ -1,4 +1,4 @@
export { default as checkLock, clear as clearLock } from './checkLock';
export { default as dataConversion } from './dataConversion';
export { default as checkSS, clear as clearSS } from './checkSS';
// export { default as checkSS, clear as clearSS } from './checkSS';
export { default as parseCertificate, Certificate } from './parseCertificate';