We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bb8fcf3 + 57bf7a8 commit b2d06baCopy full SHA for b2d06ba
libnetwork/drivers/bridge/bridge_linux.go
@@ -512,7 +512,9 @@ func (d *driver) configure(option map[string]interface{}) error {
512
IPv6: config.EnableIP6Tables,
513
Hairpin: !config.EnableUserlandProxy || config.UserlandProxyPath == "",
514
}
515
- d.firewaller.init()
+ if err := d.firewaller.init(); err != nil {
516
+ return err
517
+ }
518
iptables.OnReloaded(d.handleFirewalldReload)
519
520
var pdc portDriverClient
0 commit comments