Skip to content

Commit 843bb20

Browse files
committed
fix ipv6 with docker 1.10+
1 parent b494dc5 commit 843bb20

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

mgmtfn/dockplugin/ipamDriver.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ func requestPool(w http.ResponseWriter, r *http.Request) {
8686
tenant, okt := preq.Options["tenant"]
8787
network, okn := preq.Options["network"]
8888
if okt && okn {
89-
PoolID = network + "." + tenant + ":" + preq.Pool
89+
PoolID = network + "." + tenant + "|" + preq.Pool
9090
}
9191
presp := api.RequestPoolResponse{
9292
PoolID: PoolID,
@@ -165,10 +165,10 @@ func requestAddress(w http.ResponseWriter, r *http.Request) {
165165
subnetLen := strings.Split(areq.PoolID, "/")[1]
166166

167167
// check if pool id contains address pool or network id
168-
// HACK alert: This is very fragile. SImplify this when we stop supporting docker 1.9
169-
if strings.Count(areq.PoolID, ":") == 1 {
170-
addrPool = strings.Split(areq.PoolID, ":")[1]
171-
networkID = strings.Split(areq.PoolID, ":")[0]
168+
// HACK alert: This is very fragile. Simplify this when we stop supporting docker 1.9
169+
if strings.Contains(areq.PoolID, "|") {
170+
addrPool = strings.Split(areq.PoolID, "|")[1]
171+
networkID = strings.Split(areq.PoolID, "|")[0]
172172
}
173173

174174
// Build an alloc request to be sent to master

0 commit comments

Comments
 (0)