mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-08 23:18:05 -05:00
Fix log msg
This commit is contained in:
@@ -30,7 +30,7 @@ export const identityAccessTokenDALFactory = (db: TDbClient) => {
|
||||
};
|
||||
|
||||
const removeExpiredTokens = async (tx?: Knex) => {
|
||||
logger.info(`${QueueName.DailyResourceCleanUp}: remove expired access token started`);
|
||||
logger.info(`${QueueName.FrequentResourceCleanUp}: remove expired access token started`);
|
||||
|
||||
const BATCH_SIZE = 5000;
|
||||
const MAX_RETRY_ON_FAILURE = 3;
|
||||
@@ -132,7 +132,7 @@ export const identityAccessTokenDALFactory = (db: TDbClient) => {
|
||||
}
|
||||
|
||||
logger.info(
|
||||
`${QueueName.DailyResourceCleanUp}: remove expired access token completed. Deleted ${totalDeletedCount} tokens.`
|
||||
`${QueueName.FrequentResourceCleanUp}: remove expired access token completed. Deleted ${totalDeletedCount} tokens.`
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user