From 415d07c68841917870eac2d72c4b4357f1feb14f Mon Sep 17 00:00:00 2001 From: Takeshi Nakatani Date: Tue, 10 Dec 2024 10:19:56 +0900 Subject: [PATCH] Changed timeout value for checking openstack keystone (#125) --- lib/openstackep.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/openstackep.js b/lib/openstackep.js index 489ba25..a1693d7 100644 --- a/lib/openstackep.js +++ b/lib/openstackep.js @@ -421,7 +421,7 @@ function rawGetKeystoneEndpointsCallback(cbargs, err, epmap) // (default true) // timeout : specify the timeout required to check // each keystone endpoint. -// (default 5000ms) +// (default 30s) // is_remake_keystone_ep : if keystone endpoint is not registered, // it specifies whether to recreate it. // (default false) @@ -437,7 +437,7 @@ function rawGetKeystoneEndpoint(callback, is_v3, is_test, timeout, is_remake_key { var error; if(!apiutil.isSafeEntity(timeout) || isNaN(timeout)){ - timeout = 5000; // default 5s + timeout = 30000; // default 30s } if('boolean' !== typeof is_test){ is_test = true; // default true