Skip to content

Commit

Permalink
Fix resource quota not getting passed through (#28318) (#28329)
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Dec 14, 2021
1 parent 16147cb commit 93163ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/lib/resource_quota/api.cc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const grpc_channel_args* EnsureResourceQuotaInChannelArgs(
const grpc_arg* existing =
grpc_channel_args_find(args, GRPC_ARG_RESOURCE_QUOTA);
if (existing != nullptr && existing->type == GRPC_ARG_POINTER &&
existing->value.pointer.p == nullptr) {
existing->value.pointer.p != nullptr) {
return grpc_channel_args_copy(args);
}
// If there's no existing quota, add it to the default one - shared between
Expand Down

0 comments on commit 93163ce

Please sign in to comment.