()
| 51 | |
| 52 | return 'full'; |
| 53 | } |
| 54 | |
| 55 | async function restoreStaticCache(): Promise<void> { |
| 56 | const key = await generateCacheKey(); |
| 57 | const restoredKey = await restoreCache(CACHE_PATHS, key, CACHE_RESTORE_KEYS); |
| 58 | |
| 59 | if (restoredKey) logger.info('cache', `restore complete key=${JSON.stringify(restoredKey)}`); |
| 60 | else logger.info('cache', 'restore skipped reason="not_found"'); |
| 61 | } |
| 62 |
no test coverage detected