I am trying to run the ClassLoaderTestProgram on flink. 1. I have started Flink in local mode with the following command: bin/jobmanager.sh start local
2. I ran the ClassLoaderTestProgram jar: bin/flink run ClassLoaderTestProgram.jar --resolve-first child --output out.txt I get a java.lang.NoSuchMethodError: org.apache.flink.runtime.taskmanager.TaskManager.getMessage when I run with child-first, and I get the output when I run it in parent-first mode. The documentation states that "we get a {@link NoSuchMethodError} if we're running with {@code parent-first} class loading and that we get the correct result from the method when we're running with {@code child-first} class loading." Am I doing something wrong here? Regards, James