1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Carry over the error messages.

This commit is contained in:
Cedric Beust 2015-12-11 04:48:53 +04:00
parent 1b4abd102c
commit 79401556bf
3 changed files with 6 additions and 4 deletions

View file

@ -31,7 +31,7 @@ public class DynamicGraphTest {
override fun call() : TaskResult2<T> {
log(2, "Running node $n")
runNodes.add(n)
return TaskResult2(errorFunction(n), n)
return TaskResult2(errorFunction(n), null, n)
}
}