ваше сообщение коммита

This commit is contained in:
2025-08-01 16:33:10 +03:00
parent 3ee29f16bd
commit e30d672c52
69 changed files with 690 additions and 2130 deletions

View File

@@ -15,19 +15,19 @@ const db = require('../db');
async function cleanupSessions() {
try {
console.log('Starting session cleanup...');
// console.log('Starting session cleanup...');
const result = await sessionService.cleanupProcessedGuestIds();
if (result) {
console.log('Session cleanup completed successfully');
// console.log('Session cleanup completed successfully');
} else {
console.log('Session cleanup failed');
// console.log('Session cleanup failed');
}
process.exit(0);
} catch (error) {
console.error('Error during cleanup:', error);
// console.error('Error during cleanup:', error);
process.exit(1);
}
}