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

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


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

commit 8affcaa7eb9c57f7ed4b463e0ebfb171fbbafc4d
Author: Abhishek Agarwal <[email protected]>
AuthorDate: Sun Apr 16 21:24:13 2023 +0530

    Increase timeout for call to get worker capacity (#14095)
---
 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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to