weiqingy commented on PR #882: URL: https://github.com/apache/flink-agents/pull/882#issuecomment-4937248212
The single failing check is unrelated to this PR — it's a PyFlink environment issue on the `flink-2.0` leg, not a test failure. - **it-python [java-17] [python-3.11] [flink-2.0]**: every e2e test in the job fails at pyflink's own `Configuration()` constructor with `TypeError: Could not found the Java class 'org.apache.flink.configuration.Configuration'` and `py4j.protocol.Py4JError: org does not exist in the JVM`. The Flink dist JARs were not on the JVM classpath, so the failure happens inside `pyflink/common/configuration.py` before any agent code runs; the first Flink test (`mcp_test.py::test_mcp`) already dies there and every later e2e test cascades off the same broken gateway. [Failing job](https://github.com/apache/flink-agents/actions/runs/29104737412/job/86402259198). Two things confirm it isn't caused by this change: the identical e2e suite passed on the `flink-1.20`, `flink-2.1`, and `flink-2.2` legs of this same run, and this PR only deletes Python local-execution code — it touches nothing in the build, `dist/`, `pom.xml`, or the pyflink packaging. I've pushed an empty commit to re-trigger CI. -- 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]
