diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f8c5c713..27711c3cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,13 +7,18 @@ **Fixes:** - tridentctl correctly handles larger payloads using chunked encoding. - Trident installs correctly in a Kubernetes pod with E-series and ONTAP SAN. -- Trident allows periods in PVC names. +- Trident allows periods in PVC names + (Issue [#40](https://github.com/NetApp/trident/issues/40)). +- Fixed issue where ONTAP NAS volumes were not mountable immediately + after creation when using load-sharing mirrors for the SVM root + volume. (Issue [#44](https://github.com/NetApp/trident/issues/44)). **Enhancements:** - Controller serial numbers are reported by the REST interface and tridentctl. - tridentctl logs can display launcher and ephemeral logs, and it can create a support archive. -- Added ontap-nas-economy driver. +- Added ontap-nas-economy driver + (Issue [#2](https://github.com/NetApp/trident/issues/2)). ## v17.07.0 diff --git a/cli/api/rest.go b/cli/api/rest.go index ec7163d38..ca00dbaae 100644 --- a/cli/api/rest.go +++ b/cli/api/rest.go @@ -9,7 +9,7 @@ import ( "time" ) -const HTTP_TIMEOUT = time.Second * 10 +const HTTP_TIMEOUT = time.Second * 30 func InvokeRestApi(method string, url string, requestBody []byte, debug bool) (*http.Response, []byte, error) {