k2hr3-api 1.0.36 → 1.0.37

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 CHANGED
@@ -1,3 +1,9 @@
1
+ k2hr3-api (1.0.37) unstable; urgency=low
2
+
3
+ * Changed timeout value for checking openstack keystone - #125
4
+
5
+ -- Takeshi Nakatani <ggtakec@gmail.com> Tue, 10 Dec 2024 10:22:08 +0900
6
+
1
7
  k2hr3-api (1.0.36) unstable; urgency=low
2
8
 
3
9
  * Updated k2hr3-init.sh.templ - #123
@@ -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 5000ms)
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 = 5000; // default 5s
440
+ timeout = 30000; // default 30s
441
441
  }
442
442
  if('boolean' !== typeof is_test){
443
443
  is_test = true; // default true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "k2hr3-api",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "dependencies": {
5
5
  "@kubernetes/client-node": "^0.22.3",
6
6
  "body-parser": "^1.20.3",