We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8832fc2 commit bedc962Copy full SHA for bedc962
packages/grpc-js-xds/src/xds-stream-state/eds-state.ts
@@ -92,6 +92,11 @@ export class EdsState extends BaseXdsStreamState<ClusterLoadAssignment__Output>
92
return false;
93
}
94
95
+ for (const priority of priorityTotalWeights.keys()) {
96
+ if (priority > 0 && !priorityTotalWeights.has(priority - 1)) {
97
+ return false;
98
+ }
99
100
return true;
101
102
0 commit comments