Browse code

daemon/graphdriver: remove error or deprecated graphdriver-plugins

This error was added in 555dac5e14ad4925e020f1a72e8c39b7a316b0dc to produce
an error for the deprecated graphdriver-plugins.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2025/07/11 08:24:39
Showing 1 changed files
... ...
@@ -128,11 +128,6 @@ func getDriver(name string, config Options) (Driver, error) {
128 128
 	}
129 129
 	log.G(context.TODO()).WithFields(log.Fields{"driver": name, "home-dir": config.Root}).Error("Failed to GetDriver graph")
130 130
 
131
-	// TODO(thaJeztah): remove in next release.
132
-	if os.Getenv("DOCKERD_DEPRECATED_GRAPHDRIVER_PLUGINS") != "" {
133
-		return nil, errors.New("DEPRECATED: Support for experimental graphdriver plugins has been removed. See https://docs.docker.com/go/deprecated/")
134
-	}
135
-
136 131
 	return nil, ErrNotSupported
137 132
 }
138 133