Wow, there are a ton of errors captured having to do with being unable to merge the temp Tribble output. I'm expanding the error message a bit to help see if we can do anything going forward.
This commit is contained in:
parent
e4db8dde91
commit
f2fe59a9d4
|
|
@ -256,7 +256,8 @@ public class HierarchicalMicroScheduler extends MicroScheduler implements Hierar
|
||||||
// Specifically catch Tribble I/O exceptions and rethrow them as Reviewed. We don't expect
|
// Specifically catch Tribble I/O exceptions and rethrow them as Reviewed. We don't expect
|
||||||
// any issues here because we created the Tribble output file mere moments ago and expect it to
|
// any issues here because we created the Tribble output file mere moments ago and expect it to
|
||||||
// be completely valid.
|
// be completely valid.
|
||||||
throw new ReviewedStingException("Unable to merge temporary Tribble output file.",ex);
|
final String reason = ex.getMessage();
|
||||||
|
throw new ReviewedStingException("Unable to merge temporary Tribble output file" + (reason == null ? "." : (" (" + reason + ").")), ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue