File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ func requestPool(w http.ResponseWriter, r *http.Request) {
86
86
tenant , okt := preq .Options ["tenant" ]
87
87
network , okn := preq .Options ["network" ]
88
88
if okt && okn {
89
- PoolID = network + "." + tenant + ": " + preq .Pool
89
+ PoolID = network + "." + tenant + "| " + preq .Pool
90
90
}
91
91
presp := api.RequestPoolResponse {
92
92
PoolID : PoolID ,
@@ -165,10 +165,10 @@ func requestAddress(w http.ResponseWriter, r *http.Request) {
165
165
subnetLen := strings .Split (areq .PoolID , "/" )[1 ]
166
166
167
167
// 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 ]
172
172
}
173
173
174
174
// Build an alloc request to be sent to master
You can’t perform that action at this time.
0 commit comments