We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a20b5a0 commit 6fcec36Copy full SHA for 6fcec36
netplugin/netd.go
@@ -75,8 +75,7 @@ func startNetPlugin(pluginConfig *plugin.Config) {
75
}
76
77
78
-func initNetPluginConifg(ctx *cli.Context) (plugin.Config, error) {
79
-
+func initNetPluginConfig(ctx *cli.Context) (plugin.Config, error) {
80
// 1. validate and set up log
81
if ctx.Bool("use-syslog") {
82
syslogURL := ctx.String("syslog-url")
@@ -301,7 +300,7 @@ func main() {
301
300
302
sort.Sort(cli.FlagsByName(app.Flags))
303
app.Action = func(ctx *cli.Context) error {
304
- configs, err := initNetPluginConifg(ctx)
+ configs, err := initNetPluginConfig(ctx)
305
if err != nil {
306
errmsg := err.Error()
307
logrus.Error(errmsg)
0 commit comments