Skip to content

Commit

Permalink
#180 hotfix book tai dev 20230315
Browse files Browse the repository at this point in the history
  • Loading branch information
fdhhhdjd committed Mar 15, 2023
1 parent e1a17eb commit 3d18b65
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions backend-manager-student/src/share/configs/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,6 @@ module.exports = {
* @param { String }
*/
// Student
KEY_USER_EXIT_U: 'user_api*',
DELETE_KEY_CACHE_LRU: 'user_api_delete_key_lru',
KEY_USER_EXIT_U: 'student_api*',
DELETE_KEY_CACHE_LRU: 'student_api_delete_key_lru',
};
4 changes: 2 additions & 2 deletions backend-manager-student/src/share/db/redis_queue.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
const IOREDIS = require('ioredis');

//! SHARE
const CONSTANTS = require('../configs/constants')
const CONSTANTS = require('../configs/constants');
const CONFIGS = require('../configs/config');

//! Queue
const { userChannelHandlers } = require('../../user_api/v1/queue/queue_redis')
const { userChannelHandlers } = require('../../user_api/v1/queue/queue_redis');

//! DB
const REDIS_MASTER = new IOREDIS({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ const CONSTANTS = require('../../../share/configs/constants');
const userChannelHandlers = new Map();
userChannelHandlers.set(CONSTANTS.DELETE_KEY_CACHE_LRU, book_user.deleteKeyLRU);

module.exports = { userChannelHandlers }
module.exports = { userChannelHandlers };

0 comments on commit 3d18b65

Please sign in to comment.