markap14 commented on PR #11574: URL: https://github.com/apache/nifi/pull/11574#issuecomment-5372916734
Two CI failures on `f6be5026` look unrelated to this PR. Reran only the failed shards. **integration-tests — [Ubuntu Java 21](https://github.com/apache/nifi/actions/runs/32497455285/job/96819149028)** in [run 32497455285](https://github.com/apache/nifi/actions/runs/32497455285) `CreateConnectorIT.testStopConnectorWithTimeoutStopsRunningConnector` timed out after 2 minutes waiting for a mock Connector to reach STOPPED. That test starts `GenerateAndLog` and immediately stops it; it does not exercise Parameter classpath reloads or Connector Method discovery. The other integration/compliance shards on this head passed. ``` [ERROR] org.apache.nifi.mock.connectors.tests.CreateConnectorIT.testStopConnectorWithTimeoutStopsRunningConnector -- Time elapsed: 120.9 s <<< FAILURE! org.opentest4j.AssertionFailedError: Unexpected exception thrown: java.util.concurrent.TimeoutException: Timed out waiting for the Connector to stop after PT2M at org.apache.nifi.mock.connectors.tests.CreateConnectorIT.testStopConnectorWithTimeoutStopsRunningConnector(CreateConnectorIT.java:85) Caused by: java.util.concurrent.TimeoutException: Timed out waiting for the Connector to stop after PT2M at org.apache.nifi.mock.connector.server.StandardConnectorMockServer.stopConnector(StandardConnectorMockServer.java:387) ``` **system-tests — [macos-15 Java 21](https://github.com/apache/nifi/actions/runs/32497455268/job/96819148793)** in [run 32497455268](https://github.com/apache/nifi/actions/runs/32497455268) `ClusteredConnectorBacklogIT.testClusteredReadQueueAttributesLoadBalancedConnection` failed in teardown: delete of `BacklogReportingTestConnector` got HTTP 409 because 2 FlowFiles were still queued after a ROUND_ROBIN load-balanced purge. `ClasspathVerifyIT` passed on this shard, and ubuntu-24.04 Java 21/25 plus macos-15 Java 25 all passed. ``` [ERROR] ClusteredConnectorBacklogIT.testClusteredReadQueueAttributesLoadBalancedConnection -- Time elapsed: 11.44 s <<< ERROR! org.apache.nifi.toolkit.client.NiFiClientException: Error deleting Connector: Node localhost:5671 is unable to fulfill this request due to: Cannot delete StandardConnectorNode[..., name=BacklogReportingTestConnector, state=STOPPED] because its Process Group has 2 FlowFiles queued; all FlowFiles must be removed before it can be deleted. Caused by: jakarta.ws.rs.ClientErrorException: HTTP 409 Conflict ``` Node logs show the purge reported success, then the cluster DELETE was rejected for leftover queue data — in-flight load-balance leftovers, not a ClassLoader reload. Reran: `gh run rerun 32497455285 --failed` and `gh run rerun 32497455268 --failed`. -- 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]
