From 8d0b5b0c4d40c5ee4dba7e74851c9eecc3bb400e Mon Sep 17 00:00:00 2001 From: Xudong Ma Date: Fri, 4 Dec 2015 16:51:48 -0800 Subject: [PATCH] Replace name in TODO to a known name, otherwise MOE will complain about it --- core/src/main/java/io/grpc/internal/ClientCallImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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.