Fix the return subnet from null ipam

This commit is contained in:
Sushant Sharma 2015-12-23 15:48:07 -08:00
Родитель ccf014b644
Коммит 357342e20f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -136,7 +136,7 @@ func (ipamNullDriver *ipamNullDriver) requestPool(w http.ResponseWriter, r *http
data := make(map[string]string)
response := &requestPoolResponseFormat{"", "10.0.0.0/8", data}
response := &requestPoolResponseFormat{"", "0.0.0.0/8", data}
sendResponse(w, response,
"error responding to request pool",
"Responded to request pool with empty response")