david-streamlio opened a new pull request, #40: URL: https://github.com/apache/pulsar-connectors/pull/40
### Motivation After #37 unblocked the setup-gradle step, PR #31's CI surfaced the next infrastructure failure: the `Tune Runner VM` step fails on current GitHub runner images with ``` tee: '/sys/block/sd*/queue/discard_max_bytes': No such file or directory Error: Process completed with exit code 1. ``` The runner images no longer expose `sd*` block devices, so the glob stays unexpanded, `tee` exits 1, and the composite action's `bash -e` shell aborts the job before tests run. See failing run: https://github.com/apache/pulsar-connectors/actions/runs/29036158474 ### Modifications Sync the fix already applied in apache/pulsar master's `tune-runner-vm` action: glob all block devices (`/sys/block/*/queue/discard_max_bytes`) and guard each entry with a file-existence check. 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- 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]
