This is an automated email from the ASF dual-hosted git repository.
jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new c2d7846915 12435: fix for quick start Cluster Manager issue (#12610)
c2d7846915 is described below
commit c2d784691534f5a464830b3d08b6a3786981f10c
Author: Abhishek Sharma <[email protected]>
AuthorDate: Fri Mar 8 17:05:41 2024 -0500
12435: fix for quick start Cluster Manager issue (#12610)
---
.../src/main/resources/app/components/AsyncInstanceTable.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/pinot-controller/src/main/resources/app/components/AsyncInstanceTable.tsx
b/pinot-controller/src/main/resources/app/components/AsyncInstanceTable.tsx
index c64e49b641..d899ead430 100644
--- a/pinot-controller/src/main/resources/app/components/AsyncInstanceTable.tsx
+++ b/pinot-controller/src/main/resources/app/components/AsyncInstanceTable.tsx
@@ -88,7 +88,7 @@ export const AsyncInstanceTable = ({
useEffect(() => {
const instances = fetchInstances(instanceType, tenant);
- if (showInstanceDetails) {
+ if (showInstanceDetails && cluster.length > 0) {
const instanceDetails = instances.then(async (instancesData) => {
const liveInstanceArr = await
PinotMethodUtils.getLiveInstance(cluster);
return PinotMethodUtils.getInstanceData(
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]