@@ -29,6 +29,7 @@ import (
29
29
"github.com/containerd/containerd/log"
30
30
"github.com/containerd/containerd/mount"
31
31
"github.com/containerd/containerd/services/server"
32
+ srvconfig "github.com/containerd/containerd/services/server/config"
32
33
"github.com/containerd/containerd/sys"
33
34
"github.com/containerd/containerd/version"
34
35
"github.com/pkg/errors"
@@ -109,7 +110,7 @@ func App() *cli.App {
109
110
// we don't miss any signals during boot
110
111
signal .Notify (signals , handledSignals ... )
111
112
112
- if err := server .LoadConfig (context .GlobalString ("config" ), config ); err != nil && ! os .IsNotExist (err ) {
113
+ if err := srvconfig .LoadConfig (context .GlobalString ("config" ), config ); err != nil && ! os .IsNotExist (err ) {
113
114
return err
114
115
}
115
116
// apply flags to the config
@@ -187,7 +188,7 @@ func serve(ctx gocontext.Context, l net.Listener, serveFunc func(net.Listener) e
187
188
}()
188
189
}
189
190
190
- func applyFlags (context * cli.Context , config * server .Config ) error {
191
+ func applyFlags (context * cli.Context , config * srvconfig .Config ) error {
191
192
// the order for config vs flag values is that flags will always override
192
193
// the config values if they are set
193
194
if err := setLevel (context , config ); err != nil {
@@ -217,7 +218,7 @@ func applyFlags(context *cli.Context, config *server.Config) error {
217
218
return nil
218
219
}
219
220
220
- func setLevel (context * cli.Context , config * server .Config ) error {
221
+ func setLevel (context * cli.Context , config * srvconfig .Config ) error {
221
222
l := context .GlobalString ("log-level" )
222
223
if l == "" {
223
224
l = config .Debug .Level
0 commit comments