You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by gi...@apache.org on 2023/04/21 15:31:12 UTC

[druid] branch 26.0.0 updated: Increase timeout for call to get worker capacity (#14095) (#14138)

This is an automated email from the ASF dual-hosted git repository.

gian pushed a commit to branch 26.0.0
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/26.0.0 by this push:
     new ef838d2fa8 Increase timeout for call to get worker capacity (#14095) (#14138)
ef838d2fa8 is described below

commit ef838d2fa80e3aa6c69e64ccb3ef3d406bd0f032
Author: Abhishek Agarwal <14...@users.noreply.github.com>
AuthorDate: Fri Apr 21 21:00:58 2023 +0530

    Increase timeout for call to get worker capacity (#14095) (#14138)
---
 web-console/src/helpers/capacity.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/web-console/src/helpers/capacity.ts b/web-console/src/helpers/capacity.ts
index 62fe306645..aaed5903dc 100644
--- a/web-console/src/helpers/capacity.ts
+++ b/web-console/src/helpers/capacity.ts
@@ -23,7 +23,7 @@ import { Api } from '../singletons';
 
 export async function getClusterCapacity(): Promise<CapacityInfo> {
   const workersResponse = await Api.instance.get('/druid/indexer/v1/workers', {
-    timeout: 500,
+    timeout: 5000,
   });
 
   const usedTaskSlots = sum(


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org