k2hr3-api 1.0.36 → 1.0.38
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/ChangeLog +12 -0
- package/lib/openstackep.js +2 -2
- package/package.json +1 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
k2hr3-api (1.0.38) unstable; urgency=low
|
|
2
|
+
|
|
3
|
+
* Updated nodejs_helper for forked repositories - #127
|
|
4
|
+
|
|
5
|
+
-- Takeshi Nakatani <ggtakec@gmail.com> Mon, 20 Jan 2025 11:11:35 +0900
|
|
6
|
+
|
|
7
|
+
k2hr3-api (1.0.37) unstable; urgency=low
|
|
8
|
+
|
|
9
|
+
* Changed timeout value for checking openstack keystone - #125
|
|
10
|
+
|
|
11
|
+
-- Takeshi Nakatani <ggtakec@gmail.com> Tue, 10 Dec 2024 10:22:08 +0900
|
|
12
|
+
|
|
1
13
|
k2hr3-api (1.0.36) unstable; urgency=low
|
|
2
14
|
|
|
3
15
|
* Updated k2hr3-init.sh.templ - #123
|
package/lib/openstackep.js
CHANGED
|
@@ -421,7 +421,7 @@ function rawGetKeystoneEndpointsCallback(cbargs, err, epmap)
|
|
|
421
421
|
// (default true)
|
|
422
422
|
// timeout : specify the timeout required to check
|
|
423
423
|
// each keystone endpoint.
|
|
424
|
-
// (default
|
|
424
|
+
// (default 30s)
|
|
425
425
|
// is_remake_keystone_ep : if keystone endpoint is not registered,
|
|
426
426
|
// it specifies whether to recreate it.
|
|
427
427
|
// (default false)
|
|
@@ -437,7 +437,7 @@ function rawGetKeystoneEndpoint(callback, is_v3, is_test, timeout, is_remake_key
|
|
|
437
437
|
{
|
|
438
438
|
var error;
|
|
439
439
|
if(!apiutil.isSafeEntity(timeout) || isNaN(timeout)){
|
|
440
|
-
timeout =
|
|
440
|
+
timeout = 30000; // default 30s
|
|
441
441
|
}
|
|
442
442
|
if('boolean' !== typeof is_test){
|
|
443
443
|
is_test = true; // default true
|