File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ class LayerCache {
3030 async store ( key : string ) {
3131 this . originalKeyToStore = key
3232 await this . saveImageAsUnpacked ( )
33- await this . separateAllLayerCaches ( )
33+ // await this.separateAllLayerCaches()
3434 // Todo: remove await
3535 const storeRoot = await this . storeRoot ( )
36- const storeLayers = this . storeLayers ( )
37- await Promise . all ( [ storeRoot , storeLayers ] )
36+ // const storeLayers = this.storeLayers()
37+ // await Promise.all([storeRoot, storeLayers])
3838 }
3939
4040 private async saveImageAsUnpacked ( ) {
@@ -108,12 +108,12 @@ class LayerCache {
108108 return false
109109 }
110110
111- const hasRestoredAllLayers = await this . restoreLayers ( )
112- if ( ! hasRestoredAllLayers ) {
113- core . info ( `Some layer cache could not be found. aborting.` )
114- return false
115- }
116- await this . joinAllLayerCaches ( )
111+ // const hasRestoredAllLayers = await this.restoreLayers()
112+ // if (!hasRestoredAllLayers) {
113+ // core.info(`Some layer cache could not be found. aborting.`)
114+ // return false
115+ // }
116+ // await this.joinAllLayerCaches()
117117 await this . loadImageFromUnpacked ( )
118118 return true
119119 }
You can’t perform that action at this time.
0 commit comments