Suppress eclipse java error window on MacOS

I have a series of workflows I used to run from the command line on Windows on a scheduled basis (using Task Scheduler).
We have now moved them across to a Mac machine, and I’ve set them up to run from a basic zsh shell script

Applications/“KNIME 5.4.2.app”/Contents/MacOS/knime -nosplash -application org.knime.product.KNIME_BATCH_APPLICATION -nosave -reset -workflowDir=“********”

The issue is that on certain java based nodes, if there is an error it throws up a window as shown below, which has to manually be dismissed before any further KNIME functionality can continue. This is not something that happens when running from the command line on Windows, so if an individual workflow fails it doesn’t impact the next workflow etc.

Do we know of a way to supress this type of error message from appearing, as I don’t want it to stop the all the subsequent workflows from being executed.

@Andy_Carroll welcome to the KNIME forum. You could try and send the messages to a local file.

2 Likes

Thanks for that link! I will try adding

-launcher.suppressErrors

to the command line arguments and see if that stops the pop-up!

1 Like