We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
declareDependenciesAndCheckValues
1 parent 5f1087c commit 7812bdcCopy full SHA for 7812bdc
src/main/java/com/google/devtools/build/lib/skyframe/BuildDriverFunction.java
@@ -218,7 +218,9 @@ private static void declareDependenciesAndCheckValues(
218
Environment env, Iterable<? extends SkyKey> skyKeys) throws InterruptedException {
219
SkyframeIterableResult result = env.getOrderedValuesAndExceptions(skyKeys);
220
while (result.hasNext()) {
221
- result.next();
+ if (result.next() == null) {
222
+ return;
223
+ }
224
}
225
226
0 commit comments