core: fix PerfMark task mismatch (#7069)

This commit is contained in:
Jihun Cho 2020-05-27 12:16:57 -07:00 committed by GitHub
parent 9c4fece661
commit 7d2d2ec035
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -452,7 +452,7 @@ final class ClientCallImpl<ReqT, RespT> extends ClientCall<ReqT, RespT> {
checkArgument(numMessages >= 0, "Number requested must be non-negative");
stream.request(numMessages);
} finally {
PerfMark.stopTask("ClientCall.cancel", tag);
PerfMark.stopTask("ClientCall.request", tag);
}
}