Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix][broker] Fix resource_quota_zpath #21461

Merged
merged 3 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -106,7 +106,7 @@ public class ModularLoadManagerImpl implements ModularLoadManager {
public static final int NUM_SHORT_SAMPLES = 10;

// Path to ZNode whose children contain ResourceQuota jsons.
public static final String RESOURCE_QUOTA_ZPATH = "/loadbalance/resource-quota/namespace";
AnonHxy marked this conversation as resolved.
Show resolved Hide resolved
public static final String RESOURCE_QUOTA_ZPATH = "/loadbalance/resource-quota";

// Set of broker candidates to reuse so that object creation is avoided.
private final Set<String> brokerCandidateCache;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
*/
public class LoadSimulationController {
private static final Logger log = LoggerFactory.getLogger(LoadSimulationController.class);
private static final String QUOTA_ROOT = "/loadbalance/resource-quota/namespace";
private static final String QUOTA_ROOT = "/loadbalance/resource-quota";

// Input streams for each client to send commands through.
private final DataInputStream[] inputStreams;
Expand Down