Commit aee1e58d authored by David Porter's avatar David Porter

Handle nil WritableLayer

parent 0b1f8065
...@@ -258,7 +258,7 @@ func (p *criStatsProvider) makeContainerStats( ...@@ -258,7 +258,7 @@ func (p *criStatsProvider) makeContainerStats(
result.Rootfs.InodesUsed = &stats.WritableLayer.InodesUsed.Value result.Rootfs.InodesUsed = &stats.WritableLayer.InodesUsed.Value
} }
} }
storageID := stats.WritableLayer.StorageId storageID := stats.GetWritableLayer().GetStorageId()
if storageID != nil { if storageID != nil {
imageFsInfo, found := uuidToFsInfo[*storageID] imageFsInfo, found := uuidToFsInfo[*storageID]
if !found { if !found {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment