Browse Source

Minor improvement

pull/4270/merge^2
Thomas Kaul 2 weeks ago
parent
commit
a34323b7ec
  1. 3
      apps/api/src/app/redis-cache/redis-cache.service.ts

3
apps/api/src/app/redis-cache/redis-cache.service.ts

@ -85,7 +85,8 @@ export class RedisCacheService {
const keys = await this.getKeys(
`${this.getPortfolioSnapshotKey({ userId })}`
);
this.cache.mdel(keys);
return this.cache.mdel(keys);
}
public async reset() {

Loading…
Cancel
Save