vernedeng commented on PR #123:
URL:
https://github.com/apache/flink-connector-pulsar/pull/123#issuecomment-4815110698
> Want to test this on our Flink setup, but wondering, do you know why CI is
still failing?
The CI failure was caused by a test timeout, not actual test failures. All
tests pass locally — the issue was purely that the full test suite exceeds the
configured timeout_test limit.
A previous attempt added max-parallel: 1 to the matrix, but this actually
made things worse — it serialized the JDK 11 and JDK 17 jobs, so the total
wall-clock time became JDK11 + JDK17 instead of max(JDK11, JDK17), which could
also blow past the 120-min timeout_global.
Fix (.github/workflows/push_pr.yml):
- Removed max-parallel: 1 so JDK 11 / 17 run in parallel again
- Bumped timeout_test: 80 → 150 (per-JDK headroom for the heavier 2.x
suite)
- Bumped timeout_global: 120 → 180
--
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]