summaryrefslogtreecommitdiff
path: root/cmd/dockerd/daemon_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/dockerd/daemon_unix.go')
-rw-r--r--cmd/dockerd/daemon_unix.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/cmd/dockerd/daemon_unix.go b/cmd/dockerd/daemon_unix.go
index cd239522df..c25cddb7bc 100644
--- a/cmd/dockerd/daemon_unix.go
+++ b/cmd/dockerd/daemon_unix.go
@@ -56,19 +56,6 @@ func setDefaultUmask() error {
return nil
}
-func (cli *DaemonCli) getPlatformContainerdDaemonOpts() ([]supervisor.DaemonOpt, error) {
- opts := []supervisor.DaemonOpt{
- // TODO(thaJeztah) change this to use /proc/self/oom_score_adj instead,
- // which would allow us to set the correct score even if dockerd's score
- // was set through other means (such as systemd or "manually").
- supervisor.WithOOMScore(cli.Config.OOMScoreAdjust), //nolint:staticcheck // ignore SA1019 (WithOOMScore is deprecated); will be removed in the next release.
- }
- if cli.Config.OOMScoreAdjust != 0 {
- logrus.Warn(`DEPRECATED: The "oom-score-adjust" config parameter and the dockerd "--oom-score-adjust" option will be removed in the next release.`)
- }
- return opts, nil
-}
-
// setupConfigReloadTrap configures the SIGHUP signal to reload the configuration.
func (cli *DaemonCli) setupConfigReloadTrap() {
c := make(chan os.Signal, 1)