killDeadClients

This commit is contained in:
Ben Wilson 2023-08-06 10:53:50 -04:00
parent faac9ccfea
commit 4da96c6b68

View File

@ -20,7 +20,7 @@ export class ClientService {
public async killDeadClients() {
var tenMinutes = new Date(new Date().getTime() - (60 * 60 * 1000));
var tenMinutes = new Date(new Date().getTime() - (10 * 60 * 1000));
return await this.clientRepository.update({
deletedAt: IsNull(),