Browse Source

Merge pull request #2459 from arkodg/fix-error-check

Fix Error Check in NewNetwork
elangovan sivanandam 5 năm trước cách đây
mục cha
commit
4540e13414
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      libnetwork/controller.go

+ 1 - 1
libnetwork/controller.go

@@ -825,7 +825,7 @@ func (c *controller) NewNetwork(networkType, name string, id string, options ...
 
 
 	err = c.addNetwork(network)
 	err = c.addNetwork(network)
 	if err != nil {
 	if err != nil {
-		if strings.Contains(err.Error(), "restoring existing network") {
+		if _, ok := err.(types.MaskableError); ok {
 			// This error can be ignored and set this boolean
 			// This error can be ignored and set this boolean
 			// value to skip a refcount increment for configOnly networks
 			// value to skip a refcount increment for configOnly networks
 			skipCfgEpCount = true
 			skipCfgEpCount = true