Merge pull request #20 from Azure/development

Updated IPAM plugin to refresh source before all requests
This commit is contained in:
Onur Filiz 2016-07-22 16:58:28 -07:00 коммит произвёл GitHub
Родитель 3596627010 4c89f3920b
Коммит 78eaf626a4
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -219,6 +219,8 @@ func (plugin *ipamPlugin) releasePool(w http.ResponseWriter, r *http.Request) {
return
}
plugin.refreshSource()
// Process request.
as, _, err := plugin.parsePoolId(req.PoolID)
if err != nil {
@ -286,6 +288,8 @@ func (plugin *ipamPlugin) releaseAddress(w http.ResponseWriter, r *http.Request)
return
}
plugin.refreshSource()
// Process request.
_, ap, err := plugin.parsePoolId(req.PoolID)
if err != nil {