[GH] (rocketmq): Workflow run "Coverage" failed!
The GitHub Actions job "Coverage" on rocketmq.git has failed. Run started by GitHub user yuz10 (triggered by HScarb). Head commit for run: c5dda05d863065886bbde43a5789ca064998f871 / ScarbWin [ISSUE #8025] fix: fix topic route when topic deleted Report URL: https://github.com/apache/rocketmq/actions/runs/8803036408 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: 04dddecdfd777d0529304c4a533adab8db439dd9 / cnScarb [ISSUE #8075] Fix workflow and skip failed test for auth module on mac (#8068) * build: fix coverage workflow * Skipping some tests under the auth package on Mac * build: fix test imports Report URL: https://github.com/apache/rocketmq/actions/runs/8872561066 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: cb4c37ab55d1071a011768b5c2c1657359193784 / RongtongJin Pass code style Report URL: https://github.com/apache/rocketmq/actions/runs/8866065068 With regards, GitHub Actions via GitBox
Re: [I] DefaultMQProducer and TransactionMQProducer are in unnamed module of loader 'app' [rocketmq-spring]
yeyufang closed issue #649: DefaultMQProducer and TransactionMQProducer are in unnamed module of loader 'app' URL: https://github.com/apache/rocketmq-spring/issues/649 -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GH] (rocketmq): Workflow run "Coverage" is working again!
The GitHub Actions job "Coverage" on rocketmq.git has succeeded. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: 04dddecdfd777d0529304c4a533adab8db439dd9 / cnScarb [ISSUE #8075] Fix workflow and skip failed test for auth module on mac (#8068) * build: fix coverage workflow * Skipping some tests under the auth package on Mac * build: fix test imports Report URL: https://github.com/apache/rocketmq/actions/runs/8872561071 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PUSH-CI" failed!
The GitHub Actions job "PUSH-CI" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: 04dddecdfd777d0529304c4a533adab8db439dd9 / cnScarb [ISSUE #8075] Fix workflow and skip failed test for auth module on mac (#8068) * build: fix coverage workflow * Skipping some tests under the auth package on Mac * build: fix test imports Report URL: https://github.com/apache/rocketmq/actions/runs/8872561084 With regards, GitHub Actions via GitBox
Re: [PR] Skipping some tests under the auth package on Mac [rocketmq]
RongtongJin closed pull request #8074: Skipping some tests under the auth package on Mac URL: https://github.com/apache/rocketmq/pull/8074 -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
(rocketmq) branch develop updated: [ISSUE #8075] Fix workflow and skip failed test for auth module on mac (#8068)
This is an automated email from the ASF dual-hosted git repository. jinrongtong pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/rocketmq.git The following commit(s) were added to refs/heads/develop by this push: new 04dddecdfd [ISSUE #8075] Fix workflow and skip failed test for auth module on mac (#8068) 04dddecdfd is described below commit 04dddecdfd777d0529304c4a533adab8db439dd9 Author: cnScarb AuthorDate: Mon Apr 29 10:39:24 2024 +0800 [ISSUE #8075] Fix workflow and skip failed test for auth module on mac (#8068) * build: fix coverage workflow * Skipping some tests under the auth package on Mac * build: fix test imports --- .github/workflows/coverage.yml | 1 + .github/workflows/maven.yaml | 7 ++ .../AuthenticationEvaluatorTest.java | 25 +++ .../manager/AuthenticationMetadataManagerTest.java | 22 + .../authorization/AuthorizationEvaluatorTest.java | 28 ++ .../manager/AuthorizationMetadataManagerTest.java | 22 + 6 files changed, 105 insertions(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 81db2a656c..afa8e0f51a 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -22,3 +22,4 @@ jobs: with: fail_ci_if_error: true verbose: true + token: cf0cba0a-22f8-4580-89ab-4f1dec3bda6f diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml index 75bf91eb18..06db86e015 100644 --- a/.github/workflows/maven.yaml +++ b/.github/workflows/maven.yaml @@ -25,3 +25,10 @@ jobs: cache: "maven" - name: Build with Maven run: mvn -B package --file pom.xml + - name: Upload JVM crash logs +if: failure() +uses: actions/upload-artifact@v4 +with: + name: jvm-crash-logs + path: /Users/runner/work/rocketmq/rocketmq/auth/hs_err_pid*.log + retention-days: 1 \ No newline at end of file diff --git a/auth/src/test/java/org/apache/rocketmq/auth/authentication/AuthenticationEvaluatorTest.java b/auth/src/test/java/org/apache/rocketmq/auth/authentication/AuthenticationEvaluatorTest.java index 6a053bfdbf..dc20a0bb6d 100644 --- a/auth/src/test/java/org/apache/rocketmq/auth/authentication/AuthenticationEvaluatorTest.java +++ b/auth/src/test/java/org/apache/rocketmq/auth/authentication/AuthenticationEvaluatorTest.java @@ -26,6 +26,7 @@ import org.apache.rocketmq.auth.authentication.manager.AuthenticationMetadataMan import org.apache.rocketmq.auth.authentication.model.User; import org.apache.rocketmq.auth.config.AuthConfig; import org.apache.rocketmq.auth.helper.AuthTestHelper; +import org.apache.rocketmq.common.MixAll; import org.junit.After; import org.junit.Assert; import org.junit.Before; @@ -39,6 +40,9 @@ public class AuthenticationEvaluatorTest { @Before public void setUp() throws Exception { +if (MixAll.isMac()) { +return; +} this.authConfig = AuthTestHelper.createDefaultConfig(); this.evaluator = new AuthenticationEvaluator(authConfig); this.authenticationMetadataManager = AuthenticationFactory.getMetadataManager(authConfig); @@ -47,12 +51,18 @@ public class AuthenticationEvaluatorTest { @After public void tearDown() throws Exception { +if (MixAll.isMac()) { +return; +} this.clearAllUsers(); this.authenticationMetadataManager.shutdown(); } @Test public void evaluate1() { +if (MixAll.isMac()) { +return; +} User user = User.of("test", "test"); this.authenticationMetadataManager.createUser(user); @@ -66,6 +76,9 @@ public class AuthenticationEvaluatorTest { @Test public void evaluate2() { +if (MixAll.isMac()) { +return; +} DefaultAuthenticationContext context = new DefaultAuthenticationContext(); context.setRpcCode("11"); context.setUsername("test"); @@ -76,6 +89,9 @@ public class AuthenticationEvaluatorTest { @Test public void evaluate3() { +if (MixAll.isMac()) { +return; +} User user = User.of("test", "test"); this.authenticationMetadataManager.createUser(user); @@ -89,6 +105,9 @@ public class AuthenticationEvaluatorTest { @Test public void evaluate4() { +if (MixAll.isMac()) { +return; +} this.authConfig.setAuthenticationWhitelist("11"); this.evaluator = new AuthenticationEvaluator(authConfig); @@ -102,6 +121,9 @@ public class AuthenticationEvaluatorTest { @Test public void evaluate5() { +if (MixAll.isMac()) { +return; +} this.authConfig.setAuthenticationEnabled(false); this.evaluator
Re: [I] [Bug] GitHub workflow failed, tests on macOS failed [rocketmq]
RongtongJin closed issue #8075: [Bug] GitHub workflow failed, tests on macOS failed URL: https://github.com/apache/rocketmq/issues/8075 -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] build: fix workflow and skip failed test for auth module on mac [rocketmq]
RongtongJin merged PR #8068: URL: https://github.com/apache/rocketmq/pull/8068 -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[I] [Bug] GitHub workflow failed, tests on mac failed [rocketmq]
HScarb opened a new issue, #8075: URL: https://github.com/apache/rocketmq/issues/8075 ### Before Creating the Bug Report - [X] I found a bug, not just asking a question, which should be created in [GitHub Discussions](https://github.com/apache/rocketmq/discussions). - [X] I have searched the [GitHub Issues](https://github.com/apache/rocketmq/issues) and [GitHub Discussions](https://github.com/apache/rocketmq/discussions) of this repository and believe that this is not a duplicate. - [X] I have confirmed that this bug belongs to the current repository, not other repositories of RocketMQ. ### Runtime platform environment GitHub actions ### RocketMQ version current develop branch ### JDK Version openJDK 8 ### Describe the Bug 1. coverage workflow failed, failed to upload the result file to codecov.io 2. auth module tests failed on macos, because of a fatal error: SIGILL ### Steps to Reproduce 1. submit a PR and run checks ### What Did You Expect to See? 1. all checks passed ### What Did You See Instead? 1. coverage and Build and Run Tests by Maven on macos-latest failed ### Additional Context auth module test error output: [hs_err_pid23674.log](https://github.com/apache/rocketmq/files/15144540/hs_err_pid23674.log) -- 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: commits-unsubscr...@rocketmq.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GH] (rocketmq): Workflow run "Snapshot Daily Release Automation" failed!
The GitHub Actions job "Snapshot Daily Release Automation" on rocketmq.git has failed. Run started by GitHub user lizhanhui (triggered by lizhanhui). Head commit for run: b37d283793f4d77ec787a7e6292838783db54a8b / mxsm [ISSUE #8044]Add Override annotation for AllocateMappedFileService#run (#8045) Report URL: https://github.com/apache/rocketmq/actions/runs/8871488109 With regards, GitHub Actions via GitBox
Re: [I] [Bug] Significant Delay Observed When Consuming Last Few Messages Produced by SimpleConsumer in RocketMQ Client [rocketmq-clients]
github-actions[bot] commented on issue #718: URL: https://github.com/apache/rocketmq-clients/issues/718#issuecomment-2081715127 This issue is stale because it has been open for 30 days with no activity. It will be closed in 3 days if no further activity occurs. -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [I] [Bug] Producer should not be retry put message if OS_PAGE_CACHE_BUSY [rocketmq]
wz2cool commented on issue #8053: URL: https://github.com/apache/rocketmq/issues/8053#issuecomment-2081714437 > Maybe we can retry SYSTEM_BUSY by default. currently need to call `producer.addRetryResponseCode(ResponseCode.SYSTEM_BUSY); ` to add to retry list @biningo Currently, you can try this to solve your problem. -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [I] [Bug] Producer should not be retry put message if OS_PAGE_CACHE_BUSY [rocketmq]
wz2cool commented on issue #8053: URL: https://github.com/apache/rocketmq/issues/8053#issuecomment-2081713656 > > In my opinion: > > > > 1. If the MQ is a single broker node:retry is unreasonable. > > 2. If the MQ has multiple broker nodes:retry is reasonable. > > > > And it's not possible to have only one broker in a production environment. > > We have discussed this issue countless times (like: #5838 #2726 #1196... ), and I think it is time to come to a definite conclusion. **There is no doubt that we should support retries in system_busy**. > > Maybe we can start an email to vote for it. @RongtongJin @yuz10 @biningo agree. -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] [ISSUE #6572] MQAdmin support getKvConfig command [rocketmq]
github-actions[bot] commented on PR #6573: URL: https://github.com/apache/rocketmq/pull/6573#issuecomment-2081709703 This PR was closed because it has been inactive for 3 days since being marked as stale. -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] [ISSUE #6572] MQAdmin support getKvConfig command [rocketmq]
github-actions[bot] closed pull request #6573: [ISSUE #6572] MQAdmin support getKvConfig command URL: https://github.com/apache/rocketmq/pull/6573 -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] [ISSUE #6668] Fix error unlocking issue during interruption [rocketmq]
github-actions[bot] commented on PR #6670: URL: https://github.com/apache/rocketmq/pull/6670#issuecomment-2081709681 This PR is stale because it has been open for 365 days with no activity. It will be closed in 3 days if no further activity occurs. If you wish not to mark it as stale, please leave a comment in this PR. -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" is working again!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has succeeded. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: 66961c5afd3690caa1ec94f3f2e5c22d52642e3a / Scarb build: fix test imports Report URL: https://github.com/apache/rocketmq/actions/runs/8865972899 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: 66961c5afd3690caa1ec94f3f2e5c22d52642e3a / Scarb build: fix test imports Report URL: https://github.com/apache/rocketmq/actions/runs/8865972899 With regards, GitHub Actions via GitBox
Re: [I] [Bug] Bug title 延迟消息和定时消息都存在rmq_sys_wheel_timer,未向实际队列投递 [rocketmq]
L-xiaohai commented on issue #8022: URL: https://github.com/apache/rocketmq/issues/8022#issuecomment-2081506013 please, check your system log, can you pull some msg in the topic. maybe caused by the prefix topic name -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: cb4c37ab55d1071a011768b5c2c1657359193784 / RongtongJin Pass code style Report URL: https://github.com/apache/rocketmq/actions/runs/8866065068 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: 66961c5afd3690caa1ec94f3f2e5c22d52642e3a / Scarb build: fix test imports Report URL: https://github.com/apache/rocketmq/actions/runs/8865972899 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: 66961c5afd3690caa1ec94f3f2e5c22d52642e3a / Scarb build: fix test imports Report URL: https://github.com/apache/rocketmq/actions/runs/8865972899 With regards, GitHub Actions via GitBox
[I] DefaultMQProducer and TransactionMQProducer are in unnamed module of loader 'app' [rocketmq-spring]
yeyufang opened a new issue, #649: URL: https://github.com/apache/rocketmq-spring/issues/649 rocketmq.spring.boot.starter.version: 2.3.0 sprint.boot.version:3.2.4 I tried to send a transaction message and created an A class, using @ RocketMQTransactionListener and implementing the RocketMQLocalTransactionListener interface, but the application startup prompt: class org.apache.rocketmq.client.producer.DefaultMQProducer cannot be cast to class org.apache.rocketmq.client.producer.TransactionMQProducer (org.apache.rocketmq.client.producer.DefaultMQProducer and org.apache.rocketmq.client.producer.TransactionMQProducer are in unnamed module of loader 'app') -- 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: commits-unsubscr...@rocketmq.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: 66961c5afd3690caa1ec94f3f2e5c22d52642e3a / Scarb build: fix test imports Report URL: https://github.com/apache/rocketmq/actions/runs/8865972899 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: cb4c37ab55d1071a011768b5c2c1657359193784 / RongtongJin Pass code style Report URL: https://github.com/apache/rocketmq/actions/runs/8866065068 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: 66961c5afd3690caa1ec94f3f2e5c22d52642e3a / Scarb build: fix test imports Report URL: https://github.com/apache/rocketmq/actions/runs/8865972899 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" failed!
The GitHub Actions job "Coverage" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: cb4c37ab55d1071a011768b5c2c1657359193784 / RongtongJin Pass code style Report URL: https://github.com/apache/rocketmq/actions/runs/8866065069 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: b37d283793f4d77ec787a7e6292838783db54a8b / mxsm [ISSUE #8044]Add Override annotation for AllocateMappedFileService#run (#8045) Report URL: https://github.com/apache/rocketmq/actions/runs/8866078675 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" is working again!
The GitHub Actions job "Coverage" on rocketmq.git has succeeded. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: 66961c5afd3690caa1ec94f3f2e5c22d52642e3a / Scarb build: fix test imports Report URL: https://github.com/apache/rocketmq/actions/runs/8865972900 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: 0ff96157f3a92c202873354c7099b15f3a51bc5b / RongtongJin Skipping some tests under the auth package on Mac Report URL: https://github.com/apache/rocketmq/actions/runs/8865959075 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: 3b447f7eacee51975854ab144984f38b06f66368 / RongtongJin Skipping some tests under the auth package on Mac Report URL: https://github.com/apache/rocketmq/actions/runs/8865877503 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: b37d283793f4d77ec787a7e6292838783db54a8b / mxsm [ISSUE #8044]Add Override annotation for AllocateMappedFileService#run (#8045) Report URL: https://github.com/apache/rocketmq/actions/runs/8865983606 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" failed!
The GitHub Actions job "Coverage" on rocketmq.git has failed. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: 0ff96157f3a92c202873354c7099b15f3a51bc5b / RongtongJin Skipping some tests under the auth package on Mac Report URL: https://github.com/apache/rocketmq/actions/runs/8865959089 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PR-CI" is working again!
The GitHub Actions job "PR-CI" on rocketmq.git has succeeded. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: 66961c5afd3690caa1ec94f3f2e5c22d52642e3a / Scarb build: fix test imports Report URL: https://github.com/apache/rocketmq/actions/runs/8865972901 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" failed!
The GitHub Actions job "Coverage" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: 3b447f7eacee51975854ab144984f38b06f66368 / RongtongJin Skipping some tests under the auth package on Mac Report URL: https://github.com/apache/rocketmq/actions/runs/8865877500 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: b37d283793f4d77ec787a7e6292838783db54a8b / mxsm [ISSUE #8044]Add Override annotation for AllocateMappedFileService#run (#8045) Report URL: https://github.com/apache/rocketmq/actions/runs/8865964266 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PR-CI" failed!
The GitHub Actions job "PR-CI" on rocketmq.git has failed. Run started by GitHub user HScarb (triggered by HScarb). Head commit for run: 0ff96157f3a92c202873354c7099b15f3a51bc5b / RongtongJin Skipping some tests under the auth package on Mac Report URL: https://github.com/apache/rocketmq/actions/runs/8865959085 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user biningo (triggered by cserwen). Head commit for run: 5efc688a5ecc1967d3141403667415924dcc9586 / biningo Optimize the submitConsumeRequest and remove unnecessary exception catching Report URL: https://github.com/apache/rocketmq/actions/runs/8848686654 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user cserwen (triggered by cserwen). Head commit for run: 6af9de5f37762a366d84a59f005ee3393cdd51f9 / dengzhiwen1 retry to send when broker returns SYSTEM_BUSY Report URL: https://github.com/apache/rocketmq/actions/runs/8865670906 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "PR-CI" failed!
The GitHub Actions job "PR-CI" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: 3b447f7eacee51975854ab144984f38b06f66368 / RongtongJin Skipping some tests under the auth package on Mac Report URL: https://github.com/apache/rocketmq/actions/runs/8865877502 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "E2E test for pull request" failed!
The GitHub Actions job "E2E test for pull request" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: b37d283793f4d77ec787a7e6292838783db54a8b / mxsm [ISSUE #8044]Add Override annotation for AllocateMappedFileService#run (#8045) Report URL: https://github.com/apache/rocketmq/actions/runs/8865885099 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user fujian-zfj (triggered by cserwen). Head commit for run: b987b66f3ea44ffba3ee543052150fea70927c96 / zfj fix npe Report URL: https://github.com/apache/rocketmq/actions/runs/8816909913 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Build and Run Tests by Maven" failed!
The GitHub Actions job "Build and Run Tests by Maven" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: 544c3df3fb9a40e48787bf6dfd0ed08afbdd6808 / RongtongJin Attempt to change the JDK version in the workflows to 11 Report URL: https://github.com/apache/rocketmq/actions/runs/8865728817 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" failed!
The GitHub Actions job "Coverage" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: 544c3df3fb9a40e48787bf6dfd0ed08afbdd6808 / RongtongJin Attempt to change the JDK version in the workflows to 11 Report URL: https://github.com/apache/rocketmq/actions/runs/8865728822 With regards, GitHub Actions via GitBox
[GH] (rocketmq): Workflow run "Coverage" failed!
The GitHub Actions job "Coverage" on rocketmq.git has failed. Run started by GitHub user biningo (triggered by cserwen). Head commit for run: 5efc688a5ecc1967d3141403667415924dcc9586 / biningo Optimize the submitConsumeRequest and remove unnecessary exception catching Report URL: https://github.com/apache/rocketmq/actions/runs/8848686647 With regards, GitHub Actions via GitBox