When ccm node start --verbose fails, the stderr output is lost; in addition, None is printed:
ccm node1 start --verbose
None
Error starting node node1
Standard error output is:
With this patch, we see:
ccm node1 start --verbose
Error starting node node1
Standard error output is:
intx ThreadPriorityPolicy=42 is outside the allowed range [ 0 ... 1 ]
Improperly specified VM option 'ThreadPriorityPolicy=42'
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
(which showed my problem to be an installed JDK 9 in the path combined with no set JAVA_HOME)
When
ccm node start --verbose
fails, the stderr output is lost; in addition,None
is printed:With this patch, we see:
(which showed my problem to be an installed JDK 9 in the path combined with no set JAVA_HOME)