8000 xds: fixed unsupported unsigned 32 bits issue for circuit breaker by vinodhabib · Pull Request #11735 · grpc/grpc-java · GitHub
[go: up one dir, main page]

Skip to content

xds: fixed unsupported unsigned 32 bits issue for circuit breaker #11735

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

Merged
merged 4 commits into from
Dec 17, 2024
Merged
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
Next Next commit
xds: fixed unsupported unsigned 32 bits issue for circuit breaker
  • Loading branch information
vinodhabib committed Dec 10, 2024
commit 77f48d5055aa1083ea04ff4788c7a6f6bf757cf9
2 changes: 1 addition & 1 deletion xds/src/main/java/io/grpc/xds/XdsClusterResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ private static StructOrError<CdsUpdate.Builder> parseNonAggregateCluster(
continue;
}
if (threshold.hasMaxRequests()) {
maxConcurrentRequests = (long) threshold.getMaxRequests().getValue();
maxConcurrentRequests = Integer.toUnsignedLong(threshold.getMaxRequests().getValue());
}
}
}
Expand Down
Loading
0