diff --git a/cmd/utils.go b/cmd/utils.go index ddeaf8e..2801cbd 100644 --- a/cmd/utils.go +++ b/cmd/utils.go @@ -107,7 +107,7 @@ func getTag(obj interface{}, fieldName string, tagType string) string { // it doesn't support pagination func makeSimpleAPIRequest(method string, url string, payload io.Reader, expectedStatusCode int) (respBody []byte, err error) { client := &http.Client{ - Timeout: 60 * time.Second, + Timeout: 3 * time.Minute, } req, err := http.NewRequest(method, url, payload)