We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ffe97b3 + 16f51f5 commit 5bc66a9Copy full SHA for 5bc66a9
src/LayerCache.ts
@@ -14,7 +14,7 @@ class LayerCache {
14
ids: string[] = []
15
unformattedSaveKey: string = ''
16
restoredRootKey: string = ''
17
- imagesDir: string = path.resolve(`${__dirname}/../.action-docker-layer-caching-docker_images`)
+ imagesDir: string = path.resolve(`${__dirname}/../.adlc`)
18
enabledParallel = true
19
concurrency: number = 4
20
@@ -178,8 +178,6 @@ class LayerCache {
178
}
179
180
private async restoreLayers(): Promise<boolean> {
181
-
182
183
const pool = new PromisePool(this.concurrency)
184
const tasks = (await this.getLayerIds()).map(
185
layerId => pool.open(() => this.restoreSingleLayerBy(layerId))
0 commit comments