From a38a212dd0560ac066561bee0986af63aac46044 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Tue, 23 Apr 2024 20:49:14 -0400 Subject: [PATCH] Ignore failure to ignore thinpool keys Fixes: https://github.com/containers/podman/issues/22473 Signed-off-by: Daniel J Walsh --- pkg/config/config.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/config/config.go b/pkg/config/config.go index dc70531de9..7f49d029d5 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -115,6 +115,9 @@ type OptionsConfig struct { // Btrfs container options to be handed to btrfs drivers Btrfs struct{ BtrfsOptionsConfig } `toml:"btrfs,omitempty"` + // Thinpool container options to be handed to thinpool drivers (NOP) + Thinpool struct{} `toml:"thinpool,omitempty"` + // Overlay container options to be handed to overlay drivers Overlay struct{ OverlayOptionsConfig } `toml:"overlay,omitempty"`