@ibm-cloud/cd-tools 1.14.0 → 1.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cmd/utils/requests.js +2 -2
- package/package.json +1 -1
package/cmd/utils/requests.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Licensed Materials - Property of IBM
|
|
3
|
-
* (c) Copyright IBM Corporation 2025. All Rights Reserved.
|
|
3
|
+
* (c) Copyright IBM Corporation 2025, 2026. All Rights Reserved.
|
|
4
4
|
*
|
|
5
5
|
* Note to U.S. Government Users Restricted Rights:
|
|
6
6
|
* Use, duplication or disclosure restricted by GSA ADP Schedule
|
|
@@ -33,7 +33,7 @@ axiosRetry(axios, {
|
|
|
33
33
|
},
|
|
34
34
|
});
|
|
35
35
|
|
|
36
|
-
axios.defaults.timeout =
|
|
36
|
+
axios.defaults.timeout = 60000; // 60 seconds
|
|
37
37
|
|
|
38
38
|
axios.interceptors.request.use(request => {
|
|
39
39
|
logger.debug(`${request.method.toUpperCase()} ${request.url}`, LOG_STAGES.request);
|