Make getCacheKey sync

Signed-off-by: Joe Porpeglia <josephp@spotify.com>
This commit is contained in:
Joe Porpeglia
2022-01-13 14:17:24 -05:00
committed by Joe Porpeglia
parent 63e8b8605e
commit ccaa50511f
@@ -40,7 +40,7 @@ export class CachedEntityLoader {
entityName: EntityName,
token: string | undefined,
): Promise<Entity | undefined> {
const cacheKey = await this.getCacheKey(entityName, token);
const cacheKey = this.getCacheKey(entityName, token);
let result = await this.getFromCache(cacheKey);
if (result) {
@@ -65,10 +65,10 @@ export class CachedEntityLoader {
])) as Entity | undefined;
}
private async getCacheKey(
private getCacheKey(
entityName: EntityName,
token: string | undefined,
): Promise<string> {
): string {
const key = ['catalog', stringifyEntityRef(entityName)];
if (token) {