Skip to content

Commit

Permalink
Fixes moby#40388
Browse files Browse the repository at this point in the history
Signed-off-by: Wang Yumu <37442693@qq.com>
  • Loading branch information
Wang Yumu committed Mar 17, 2020
1 parent e8d8603 commit 4dda50d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libnetwork/ipams/builtin/builtin_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ func Init(ic ipamapi.Callback, l, g interface{}) error {
}
}

ipamutils.ConfigLocalScopeDefaultNetworks(GetDefaultIPAddressPool())
err := ipamutils.ConfigLocalScopeDefaultNetworks(GetDefaultIPAddressPool())
if err != nil {
return err
}

a, err := ipam.NewAllocator(localDs, globalDs)
if err != nil {
Expand Down

0 comments on commit 4dda50d

Please sign in to comment.