MrGuoGH commented on issue #2828:
URL: https://github.com/apache/hop/issues/2828#issuecomment-1514033424
When a pipeline runs incorrectly, will be make 'stop the world',like this:
> // Get the logging text and filter it out. Store it in the
transformLogMap...
> //
> transformLogMap = new HashMap<>();
> hopDisplay()
> .syncExec(
> () -> {
> for (IEngineComponent component :
pipeline.getComponents()) {
> if (component.getErrors() > 0) {
> String logText = component.getLogText();
> transformLogMap.put(component.getName(), logText);
> }
> }
> });
replace syncExec by asyncExec
--
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]