We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4c422ae + 5cc7c6c commit 58fb5f5Copy full SHA for 58fb5f5
pkg/sdn/plugin/master.go
@@ -129,7 +129,8 @@ func (master *OsdnMaster) isClusterNetworkChanged(curNetwork *NetworkInfo) (bool
129
130
if curNetwork.ClusterNetwork.String() != oldNetwork.ClusterNetwork.String() ||
131
curNetwork.HostSubnetLength != oldNetwork.HostSubnetLength ||
132
- curNetwork.ServiceNetwork.String() != oldNetwork.ServiceNetwork.String() {
+ curNetwork.ServiceNetwork.String() != oldNetwork.ServiceNetwork.String() ||
133
+ curNetwork.PluginName != oldNetwork.PluginName {
134
return true, nil
135
}
136
return false, nil
0 commit comments