Browse Source

deadlock fix in RemoveStaticRoute

Andrei Ushakov 10 years ago
parent
commit
b62013c24c
1 changed files with 0 additions and 1 deletions
  1. 0 1
      libnetwork/sandbox/route_linux.go

+ 0 - 1
libnetwork/sandbox/route_linux.go

@@ -177,7 +177,6 @@ func (n *networkNamespace) AddStaticRoute(r *types.StaticRoute) error {
 }
 
 func (n *networkNamespace) RemoveStaticRoute(r *types.StaticRoute) error {
-	n.Lock()
 
 	err := removeRoute(n.nsPath(), r.Destination, r.NextHop)
 	if err == nil {