lhotari commented on pull request #9393: URL: https://github.com/apache/pulsar/pull/9393#issuecomment-773108715
@michaeljmarshall unfortunately, it remains flaky. The logs are at https://gist.github.com/lhotari/f75e3efaf5f7bf7536e6d98c1898789e . I reproduced with these commands on Linux (Ubuntu / PopOS 20.10): ``` $ git branch -D issue-6368-flaky-test $ gh pr checkout 9393 $ mvn clean install -DskipTests -Dspotbugs.skip=true $ ptbx_until_test_fails_in_docker_with_logs -Pcore-modules -pl pulsar-broker -Dtest=AntiAffinityNamespaceGroupTest ``` `ptbx_until_test_fails_in_docker_with_logs` is part of [the toolbox](https://github.com/lhotari/pulsar-contributor-toolbox#ptbx_until_test_fails_in_docker_with_logs) I am using. That function runs a mvn test in a loop with limited resource (`docker run --cpus=2 --memory=6g`) until the command fails. just in case anyone is interested, the ptbx_until_test_fails_in_docker_with_logs captures the logs which contain ansi color control codes, I stripped the ansi codes with ansi2txt before uploading the logs to [the gist](https://gist.github.com/lhotari/f75e3efaf5f7bf7536e6d98c1898789e): ``` $ cat output_2021-02-04-093600.log | ansi2txt > output_2021-02-04-093600.log.txt $ gh gist create output_2021-02-04-093600.log.txt -d "testing PR 9393 https://github.com/apache/pulsar/commits/$(git rev-parse HEAD | colrm 9)" ``` `gh` is the github's command line tooling, https://cli.github.com/ . ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
