fix: correctly return an error for non http 200 response from nmagent (#1333)

Signed-off-by: Evan Baker <rbtr@users.noreply.github.com>
This commit is contained in:
Evan Baker 2022-04-18 16:50:03 -05:00 коммит произвёл GitHub
Родитель b13d75a99d
Коммит 704ba1adf5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -255,7 +255,7 @@ func (c *Client) GetNCVersionList(ctx context.Context) (*NetworkContainerListRes
logger.Printf("[NMAgentClient][Response] GetNcVersionListWithOutToken response: %s, latency is %d", string(b), time.Since(now).Milliseconds())
if resp.StatusCode != http.StatusOK {
return nil, errors.Wrap(err, "failed to GetNCVersionList")
return nil, errors.Errorf("failed to GetNCVersionList with status %d", resp.StatusCode)
}
var response NetworkContainerListResponse