abstractdog commented on PR #293:
URL: https://github.com/apache/tez/pull/293#issuecomment-1603895865
thanks @ayushtkn ! 1 more to address, can you please check TestLocalMode
too? I remember that what my original headache that I workaround with something
like (with respecting the junit parameters)
```
private String generateDagName(String baseName) {
return baseName + (useDfs ? "_useDfs" : "") + (useLocalModeWithoutNetwork
? "_useLocalModeWithoutNetwork" : "");
}
```
and:
```
DAG dag1 = createSimpleDAG("dag1", FailingProcessor.class.getName());
DAG dag1 = createSimpleDAG("DAG-testNoSysExitOnFailinglDAG",
FailingProcessor.class.getName());
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]