Skip to content

Commit d852962

Browse files
committed
Fix ext_proc
1 parent 25d414b commit d852962

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

xds/src/main/java/io/grpc/xds/ExternalProcessorClientInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ private static String getHeaderValue(Metadata headers, String headerName) {
397397
private static class DataPlaneDelayedCall<ReqT, RespT> extends DelayedClientCall<ReqT, RespT> {
398398
DataPlaneDelayedCall(
399399
Executor executor, ScheduledExecutorService scheduler, @Nullable Deadline deadline) {
400-
super(executor, scheduler, deadline);
400+
super("ext_proc", executor, scheduler, deadline);
401401
}
402402
}
403403

0 commit comments

Comments
 (0)