aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/remote/RemoteActionCache.java
diff options
context:
space:
mode:
authorGravatar Ola Rozenfeld <olaola@google.com>2016-11-24 15:34:30 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2016-11-24 15:56:03 +0000
commitc3d5c68f4086de7bfd46fc09bbc2445d739edd5c (patch)
treea55d519801eb167faabfac258f6a31327f494704 /src/main/java/com/google/devtools/build/lib/remote/RemoteActionCache.java
parent32086b2d79c4d512324228babd16f6562e830350 (diff)
Attempt #2 to submit commit e860316559eac366d47923a8eb4b5489a661aa35: Using an ActionFileInputCache for SHA1 digests used with remote execution.
I missed an important test failure -- turned out we have a remote execution test that does not live under lib/remote. -- MOS_MIGRATED_REVID=140135277
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/remote/RemoteActionCache.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/remote/RemoteActionCache.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/remote/RemoteActionCache.java b/src/main/java/com/google/devtools/build/lib/remote/RemoteActionCache.java
index 62790e8a76..cc0720b57f 100644
--- a/src/main/java/com/google/devtools/build/lib/remote/RemoteActionCache.java
+++ b/src/main/java/com/google/devtools/build/lib/remote/RemoteActionCache.java
@@ -61,9 +61,8 @@ interface RemoteActionCache {
throws IOException, InterruptedException;
/**
- * Put the file contents cache if it is not already in it. No-op if the file is already stored in
- * cache. The given path must be a full absolute path. Note: this is horribly inefficient, need to
- * patch through an overload that uses an ActionInputFile cache to compute the digests!
+ * Put the file contents in cache if it is not already in it. No-op if the file is already stored
+ * in cache. The given path must be a full absolute path.
*
* @return The key for fetching the file contents blob from cache.
*/