aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java
diff options
context:
space:
mode:
authorGravatar Eric Fellheimer <felly@google.com>2015-06-18 22:08:32 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2015-06-19 11:04:46 +0000
commit6a9d7e5ef21bf8b76a0027c58bd13e98a95b9750 (patch)
treedcdf54bf7af2993711bd58396b026d49bd72e209 /src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java
parent42a6830cfd476a75c61cb49443da3c1e4857d36e (diff)
Renaming ExecutorShutdownUtil to ExecutorUtil, since it doesn't just do shutdown operations.
-- MOS_MIGRATED_REVID=96351438
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java b/src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java
index 2ab75476ec..923cc30a4d 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java
@@ -25,7 +25,7 @@ import com.google.common.collect.Range;
import com.google.common.collect.Sets;
import com.google.common.util.concurrent.ThreadFactoryBuilder;
import com.google.devtools.build.lib.actions.Artifact;
-import com.google.devtools.build.lib.concurrent.ExecutorShutdownUtil;
+import com.google.devtools.build.lib.concurrent.ExecutorUtil;
import com.google.devtools.build.lib.concurrent.Sharder;
import com.google.devtools.build.lib.concurrent.ThrowableRecordingRunnableWrapper;
import com.google.devtools.build.lib.util.LoggingUtil;
@@ -162,7 +162,7 @@ class FilesystemValueChecker {
executor.submit(wrapper.wrap(job));
}
- boolean interrupted = ExecutorShutdownUtil.interruptibleShutdown(executor);
+ boolean interrupted = ExecutorUtil.interruptibleShutdown(executor);
Throwables.propagateIfPossible(wrapper.getFirstThrownError());
LOG.info("Completed output file stat checks");
if (interrupted) {
@@ -318,7 +318,7 @@ class FilesystemValueChecker {
}));
}
- boolean interrupted = ExecutorShutdownUtil.interruptibleShutdown(executor);
+ boolean interrupted = ExecutorUtil.interruptibleShutdown(executor);
Throwables.propagateIfPossible(wrapper.getFirstThrownError());
if (interrupted) {
throw new InterruptedException();