Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ public DruidCoordinatorRuntimeParams run(DruidCoordinatorRuntimeParams params)
final DruidCluster cluster = params.getDruidCluster();

if (cloneServers.isEmpty()) {
// No servers to be cloned.
if (!cloneStatusManager.getStatusForAllServers().isEmpty()) {
// Clear the status manager if the dynamic config no longer has mappings to avoid showing stale clone statuses.
cloneStatusManager.updateStatus(Map.of());
}
return params;
}

Expand Down
1 change: 1 addition & 0 deletions web-console/src/components/header-bar/header-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,7 @@ export const HeaderBar = React.memo(function HeaderBar(props: HeaderBarProps) {
{doctorDialogOpen && <DoctorDialog onClose={() => setDoctorDialogOpen(false)} />}
{coordinatorDynamicConfigDialogOpen && (
<CoordinatorDynamicConfigDialog
capabilities={capabilities}
onClose={() => setCoordinatorDynamicConfigDialogOpen(false)}
/>
)}
Expand Down
Loading
Loading