diff --git a/core/src/main/java/io/grpc/internal/ClientCallImpl.java b/core/src/main/java/io/grpc/internal/ClientCallImpl.java index ce16c0d440..7aed8a8742 100644 --- a/core/src/main/java/io/grpc/internal/ClientCallImpl.java +++ b/core/src/main/java/io/grpc/internal/ClientCallImpl.java @@ -226,7 +226,8 @@ final class ClientCallImpl extends ClientCall */ static boolean updateTimeoutHeader(@Nullable Long deadlineNanoTime, Metadata headers) { // Fill out timeout on the headers - // TODO(someone): Find out if this should always remove the timeout, even when returning false. + // TODO(carl-mastrangelo): Find out if this should always remove the timeout, + // even when returning false. headers.removeAll(TIMEOUT_KEY); // Convert the deadline to timeout. Timeout is more favorable than deadline on the wire // because timeout tolerates the clock difference between machines.