File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,12 @@ func NewAgent(pluginConfig *plugin.Config) *Agent {
60
60
log .Fatalf ("Error initializing cluster. Err: %v" , err )
61
61
}
62
62
63
+ // Init the driver plugins..
64
+ err = netPlugin .Init (* pluginConfig )
65
+ if err != nil {
66
+ log .Fatalf ("Failed to initialize the plugin. Error: %s" , err )
67
+ }
68
+
63
69
// Initialize appropriate plugin
64
70
switch opts .PluginMode {
65
71
case "docker" :
@@ -73,13 +79,6 @@ func NewAgent(pluginConfig *plugin.Config) *Agent {
73
79
default :
74
80
log .Fatalf ("Unknown plugin mode -- should be docker | kubernetes" )
75
81
}
76
-
77
- // Init the driver plugins..
78
- err = netPlugin .Init (* pluginConfig )
79
- if err != nil {
80
- log .Fatalf ("Failed to initialize the plugin. Error: %s" , err )
81
- }
82
-
83
82
// init mesos plugin
84
83
mesosplugin .InitPlugin (netPlugin )
85
84
You can’t perform that action at this time.
0 commit comments