Merge pull request #1881 from docker/revert-1868-fix-error-in-restore-ep
Revert "Fixes bug that mistook gw6 for gw."
This commit is contained in:
commit
de45a92ed5
1 changed files with 1 additions and 1 deletions
|
@ -413,7 +413,7 @@ func (epj *endpointJoinInfo) UnmarshalJSON(b []byte) error {
|
|||
return err
|
||||
}
|
||||
if v, ok := epMap["gw"]; ok {
|
||||
epj.gw = net.ParseIP(v.(string))
|
||||
epj.gw6 = net.ParseIP(v.(string))
|
||||
}
|
||||
if v, ok := epMap["gw6"]; ok {
|
||||
epj.gw6 = net.ParseIP(v.(string))
|
||||
|
|
Loading…
Add table
Reference in a new issue