Re: [I] [Bug] Memory leakage detected when IndexStoreService is enabled and TieredMessageStore's FileSegment is PosixFileSegment [rocketmq]
caigy commented on issue #8017: URL: https://github.com/apache/rocketmq/issues/8017#issuecomment-2056368726 > > `ByteStreams.toByteArray()` creates large array in memory and is unnecessary. It seems `FileChannel.transferFrom()` with NIO channel would be more efficient for writing streams to a file. > > Thx for reply, I tried `FileChannel.transferFrom()` but find out some unittest failed: > > ``` > @Test > public void consumeQueueTest() throws ClassNotFoundException, NoSuchMethodException { > ... > ByteBuffer cqItem1 = fileSegment.read(initPosition, unitSize); > Assert.assertEquals(baseOffset, cqItem1.getLong()); // failed > ... > } > ``` > > > java.lang.AssertionError: > > Expected :1000 > > Actual :0 > > It turns out the cq data was not flush correctly by debugging, I wonder if the way I use `FileChannel.transferFrom()` is wrong: Before: > > ``` > byte[] byteArray = ByteStreams.toByteArray(inputStream); > writeFileChannel.position(position); > ByteBuffer buffer = ByteBuffer.wrap(byteArray); > while (buffer.hasRemaining()) { > writeFileChannel.write(buffer); > } > writeFileChannel.force(true); > ``` > > After: > > ``` > ReadableByteChannel readableByteChannel = Channels.newChannel(inputStream); > writeFileChannel.transferFrom(readableByteChannel, position, length); > writeFileChannel.force(true); > ``` It seems the modification is not equivalent. `writeFileChannel.position(position)` has side effect, making `writeFileChannel` written from `position`. But `writeFileChannel.transferFrom()` exits when `position` is larger than the size of `writeFileChannel`. You might extend the file of `writeFileChannel` to `position` and also check if the transferred bytes is equal to `length`. -- 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 hakusai22 (triggered by RongtongJin). Head commit for run: 9ecc29bc76d3f6b4b71422ea09cc915817d458c1 / yinpeng Merge branch 'develop' into fix_doc Report URL: https://github.com/apache/rocketmq/actions/runs/8679137612 With regards, GitHub Actions via GitBox
Re: [PR] [ISSUE #8020] fix document typo [rocketmq]
RongtongJin merged PR #8021: URL: https://github.com/apache/rocketmq/pull/8021 -- 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] [Doc] Documentation Related [rocketmq]
RongtongJin closed issue #8020: [Doc] Documentation Related URL: https://github.com/apache/rocketmq/issues/8020 -- 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 #8020] Fix document typo (#8021)
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 ac5545cca4 [ISSUE #8020] Fix document typo (#8021) ac5545cca4 is described below commit ac5545cca47d4075c1f4e6f9bbdcbe9b34da5465 Author: 高木同学 AuthorDate: Mon Apr 15 18:23:55 2024 +0800 [ISSUE #8020] Fix document typo (#8021) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index de539e7996..454ce27b0f 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Maven Central][maven-central-image]][maven-central-url] [![Release][release-image]][release-url] [![License][license-image]][license-url] -[![Average Time to Resolve An Issue][percentage-of-issues-still-open-image]][pencentage-of-issues-still-open-url] +[![Average Time to Resolve An Issue][percentage-of-issues-still-open-image]][percentage-of-issues-still-open-url] [![Percentage of Issues Still Open][average-time-to-resolve-an-issue-image]][average-time-to-resolve-an-issue-url] [![Twitter Follow][twitter-follow-image]][twitter-follow-url] @@ -183,7 +183,7 @@ name-service 1/1 107m * [RocketMQ Connect](https://github.com/apache/rocketmq-connect): A tool for scalably and reliably streaming data between Apache RocketMQ and other systems. * [RocketMQ MQTT](https://github.com/apache/rocketmq-mqtt): A new MQTT protocol architecture model, based on which Apache RocketMQ can better support messages from terminals such as IoT devices and Mobile APP. * [RocketMQ EventBridge](https://github.com/apache/rocketmq-eventbridge): EventBridge make it easier to build a event-driven application. -* [RocketMQ Incubating Community Projects](https://github.com/apache/rocketmq-externals): Icubator community projects of Apache RocketMQ, including [logappender](https://github.com/apache/rocketmq-externals/tree/master/logappender), [rocketmq-ansible](https://github.com/apache/rocketmq-externals/tree/master/rocketmq-ansible), [rocketmq-beats-integration](https://github.com/apache/rocketmq-externals/tree/master/rocketmq-beats-integration), [rocketmq-cloudevents-binding](https://github.com [...] +* [RocketMQ Incubating Community Projects](https://github.com/apache/rocketmq-externals): Incubator community projects of Apache RocketMQ, including [logappender](https://github.com/apache/rocketmq-externals/tree/master/logappender), [rocketmq-ansible](https://github.com/apache/rocketmq-externals/tree/master/rocketmq-ansible), [rocketmq-beats-integration](https://github.com/apache/rocketmq-externals/tree/master/rocketmq-beats-integration), [rocketmq-cloudevents-binding](https://github.co [...] * [RocketMQ Site](https://github.com/apache/rocketmq-site): The repository for Apache RocketMQ website. * [RocketMQ E2E](https://github.com/apache/rocketmq-e2e): A project for testing Apache RocketMQ, including end-to-end, performance, compatibility tests. @@ -245,6 +245,6 @@ services. [average-time-to-resolve-an-issue-image]: http://isitmaintained.com/badge/resolution/apache/rocketmq.svg [average-time-to-resolve-an-issue-url]: http://isitmaintained.com/project/apache/rocketmq [percentage-of-issues-still-open-image]: http://isitmaintained.com/badge/open/apache/rocketmq.svg -[pencentage-of-issues-still-open-url]: http://isitmaintained.com/project/apache/rocketmq +[percentage-of-issues-still-open-url]: http://isitmaintained.com/project/apache/rocketmq [twitter-follow-image]: https://img.shields.io/twitter/follow/ApacheRocketMQ?style=social [twitter-follow-url]: https://twitter.com/intent/follow?screen_name=ApacheRocketMQ
[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: ac5545cca47d4075c1f4e6f9bbdcbe9b34da5465 / 高木同学 [ISSUE #8020] Fix document typo (#8021) Report URL: https://github.com/apache/rocketmq/actions/runs/8687509955 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: ac5545cca47d4075c1f4e6f9bbdcbe9b34da5465 / 高木同学 [ISSUE #8020] Fix document typo (#8021) Report URL: https://github.com/apache/rocketmq/actions/runs/8687509937 With regards, GitHub Actions via GitBox
Re: [I] [Bug] Unable to consume messages orderly for ordered message while using RocketMQ 5 client [rocketmq]
redlsz commented on issue #7999: URL: https://github.com/apache/rocketmq/issues/7999#issuecomment-2056679796 Configure your consumer group as order with "-o" option. ./mqadmin updateSubGroup -c DefaultCluster -n 192.168.10.233:9876 -g OrderConsumerGroupV3 -o true -- 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] Bug title 延迟消息和定时消息都存在rmq_sys_wheel_timer,未向实际队列投递 [rocketmq]
rcfeng opened a new issue, #8022: URL: https://github.com/apache/rocketmq/issues/8022 ### 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 windows docker desktop ### RocketMQ version rocketmq 5.2   rocketmq-spring-boot-starter 2.3.0 ### JDK Version jdk 21 ### Describe the Bug 我在本地用docker启动的rocketmq,发送普通消息和消费是正常的,发送延迟消息成功但是无法消费,未向实际队列投递。 检查了rocketmq版本,docker时间 等因素,查阅各种资料均无解。 timerWheelEnable=true源码看了,也设置了。 队列是用mqadmin手动创建的,声明了DEALY admin tool和console都没有工具能看到store里message的数据,如消息类型,投递时间之类的。 目前的表现就是只会存在rmq_sys_wheel_timer而不向实际的队列里投递。 (注:我只启动了) rocketmq启动命令 `docker run -d -p 9876:9876 --name rmqnamesrv --memory=512m -v "E:\Java\Program Files\Docker\namesrv\logs:/home/rocketmq/logs" -v "E:\Java\Program Files\Docker\namesrv\store:/home/rocketmq/store" -e TZ=Asia/Shanghai apache/rocketmq sh mqnamesrv` `docker run -d -p 10911:10911 -p 10909:10909 --name rmqbroker-m1 -v "E:\Java\Program Files\Docker\broker\logs-m1:/home/rocketmq/logs" -v "E:\Java\Program Files\Docker\broker\store-m1:/home/rocketmq/store" -v "E:\Java\Program Files\Docker\conf\broker-m1.conf:/home/rocketmq/rocketmq-5.2.0/conf/broker.conf" --add-host namesrv:192.168.28.66 -e "NAMESRV_ADDR=namesrv:9876" -e TZ=Asia/Shanghai apache/rocketmq:latest sh mqbroker -n namesrv:9876 -c /home/rocketmq/rocketmq-5.2.0/conf/broker.conf autoCreateTopicEnable=true` 发送代码 rocketMQTemplate.syncSendDelayTimeSeconds("NewDelayTopic", person, 9); 响应 SendResult [sendStatus=SEND_OK, msgId=A9FEB4449C0C36BAF30C4C53AC68, offsetMsgId=C0A81C422A9FB713, messageQueue=MessageQueue [topic=NewDelayTopic, brokerName=rcfeng-broker-m1, queueId=0], queueOffset=50] 控制台  store里有数据  ### Steps to Reproduce 1 ### What Did You Expect to See? 1 ### What Did You See Instead? 1 ### Additional Context 1 -- 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 RongtongJin (triggered by RongtongJin). Head commit for run: ac5545cca47d4075c1f4e6f9bbdcbe9b34da5465 / 高木同学 [ISSUE #8020] Fix document typo (#8021) Report URL: https://github.com/apache/rocketmq/actions/runs/8687509938 With regards, GitHub Actions via GitBox
Re: [I] [Bug] Memory leakage detected when IndexStoreService is enabled and TieredMessageStore's FileSegment is PosixFileSegment [rocketmq]
bxfjb commented on issue #8017: URL: https://github.com/apache/rocketmq/issues/8017#issuecomment-2056779446 > > > `ByteStreams.toByteArray()` creates large array in memory and is unnecessary. It seems `FileChannel.transferFrom()` with NIO channel would be more efficient for writing streams to a file. > > > > > > Thx for reply, I tried `FileChannel.transferFrom()` but find out some unittest failed: > > ``` > > @Test > > public void consumeQueueTest() throws ClassNotFoundException, NoSuchMethodException { > > ... > > ByteBuffer cqItem1 = fileSegment.read(initPosition, unitSize); > > Assert.assertEquals(baseOffset, cqItem1.getLong()); // failed > > ... > > } > > ``` > > > > > > > > > > > > > > > > > > > > > > > > > java.lang.AssertionError: > > > Expected :1000 > > > Actual :0 > > > > > > It turns out the cq data was not flush correctly by debugging, I wonder if the way I use `FileChannel.transferFrom()` is wrong: Before: > > ``` > > byte[] byteArray = ByteStreams.toByteArray(inputStream); > > writeFileChannel.position(position); > > ByteBuffer buffer = ByteBuffer.wrap(byteArray); > > while (buffer.hasRemaining()) { > > writeFileChannel.write(buffer); > > } > > writeFileChannel.force(true); > > ``` > > > > > > > > > > > > > > > > > > > > > > > > After: > > ``` > > ReadableByteChannel readableByteChannel = Channels.newChannel(inputStream); > > writeFileChannel.transferFrom(readableByteChannel, position, length); > > writeFileChannel.force(true); > > ``` > > It seems the modification is not equivalent. `writeFileChannel.position(position)` has side effect, making `writeFileChannel` written from `position`. But `writeFileChannel.transferFrom()` exits when `position` is larger than the size of `writeFileChannel`. > > You might extend the file of `writeFileChannel` to `position` and also check if the transferred bytes is equal to `length`. Agree with you. But then I was wondering if the failed unittest necessary, it seems acting like: - set a empty file's commitPosition to 100 - append some mocked ConsumeQueue Buffer to it - `commitPosition` is larger than the size of `writeFileChannel`, commit failed Is it acceptable to remove step 1 in `consumeQueueTest`? @lizhimins 'cause the scenario seems nonexistent in production. Furthermore, `FileChannel.read()` has the same problem with `FileChannel.write()`, but to return a `ByteBuffer`, calling it looks like inevitable. I didn't find out how to use `FileChannel.transferTo()` to replace it completely. I'd like to use `MappedByteBuffer` as a alternative. -- 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 #6511] Refactor var names in MessageStoreConfig [rocketmq]
github-actions[bot] commented on PR #6515: URL: https://github.com/apache/rocketmq/pull/6515#issuecomment-2058012493 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 #6511] Refactor var names in MessageStoreConfig [rocketmq]
github-actions[bot] closed pull request #6515: [ISSUE #6511] Refactor var names in MessageStoreConfig URL: https://github.com/apache/rocketmq/pull/6515 -- 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] can I send a message directly to the DLQ before it reaches the maximum number of retries? [rocketmq]
github-actions[bot] commented on issue #6461: URL: https://github.com/apache/rocketmq/issues/6461#issuecomment-2058012511 This issue 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 #6448] Fix SystemClock.now() is affected by NTP time synchronization, which can cause inaccuracies in the result of isOSPageCacheBusy() #6487 [rocketmq]
github-actions[bot] commented on PR #6528: URL: https://github.com/apache/rocketmq/pull/6528#issuecomment-2058012470 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 #6448] Fix SystemClock.now() is affected by NTP time synchronization, which can cause inaccuracies in the result of isOSPageCacheBusy() #6487 [rocketmq]
github-actions[bot] closed pull request #6528: [ISSUE #6448] Fix SystemClock.now() is affected by NTP time synchronization, which can cause inaccuracies in the result of isOSPageCacheBusy() #6487 URL: https://github.com/apache/rocketmq/pull/6528 -- 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] can I send a message directly to the DLQ before it reaches the maximum number of retries? [rocketmq]
github-actions[bot] closed issue #6461: can I send a message directly to the DLQ before it reaches the maximum number of retries? URL: https://github.com/apache/rocketmq/issues/6461 -- 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] [Enhancement] Is the rust sdk ready for production? [rocketmq-clients]
github-actions[bot] commented on issue #696: URL: https://github.com/apache/rocketmq-clients/issues/696#issuecomment-2058021214 This issue 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: [I] [Enhancement] Is the rust sdk ready for production? [rocketmq-clients]
github-actions[bot] closed issue #696: [Enhancement] Is the rust sdk ready for production? URL: https://github.com/apache/rocketmq-clients/issues/696 -- 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] chore(deps): bump google.golang.org/protobuf from 1.28.1 to 1.33.0 in /golang [rocketmq-clients]
dependabot[bot] commented on PR #706: URL: https://github.com/apache/rocketmq-clients/pull/706#issuecomment-2058021222 OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. If you change your mind, just re-open this PR and I'll resolve any conflicts on it. -- 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-clients) branch dependabot/go_modules/golang/google.golang.org/protobuf-1.33.0 deleted (was d925c492)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/go_modules/golang/google.golang.org/protobuf-1.33.0 in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git was d925c492 chore(deps): bump google.golang.org/protobuf in /golang The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
Re: [PR] chore(deps): bump google.golang.org/protobuf from 1.28.1 to 1.33.0 in /golang [rocketmq-clients]
github-actions[bot] commented on PR #706: URL: https://github.com/apache/rocketmq-clients/pull/706#issuecomment-2058021187 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] chore(deps): bump google.golang.org/protobuf from 1.28.1 to 1.33.0 in /golang [rocketmq-clients]
github-actions[bot] closed pull request #706: chore(deps): bump google.golang.org/protobuf from 1.28.1 to 1.33.0 in /golang URL: https://github.com/apache/rocketmq-clients/pull/706 -- 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] fix log pattern [rocketmq-eventbridge]
2011shenlin merged PR #166: URL: https://github.com/apache/rocketmq-eventbridge/pull/166 -- 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-eventbridge) branch main updated: fix log pattern (#166)
This is an automated email from the ASF dual-hosted git repository. shenlin pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git The following commit(s) were added to refs/heads/main by this push: new 26b43e1 fix log pattern (#166) 26b43e1 is described below commit 26b43e1be928bcc67627ab555a17cb776d27bb52 Author: Lei Sun <871958...@qq.com> AuthorDate: Tue Apr 16 10:00:41 2024 +0800 fix log pattern (#166) --- dist/src/main/resources/logback.xml | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dist/src/main/resources/logback.xml b/dist/src/main/resources/logback.xml index c86f339..5a46ab8 100644 --- a/dist/src/main/resources/logback.xml +++ b/dist/src/main/resources/logback.xml @@ -19,8 +19,7 @@ System.out -%d{-MM-dd - HH:mm:ss.SSS}@@%X{traceId:-}@@%X{parentId:-}@@%X{spanId:-}@@[%thread]@@%level@@%logger{36}[%line]@@%msg%n +%d{-MM-dd HH:mm:ss.SSS}@@%X{traceId:-}@@%X{parentId:-}@@%X{spanId:-}@@[%thread]@@%level@@%logger{36}[%line]@@%msg%n @@ -33,8 +32,7 @@ 10GB -%d{-MM-dd - HH:mm:ss.SSS}@@%X{traceId:-}@@%X{parentId:-}@@%X{spanId:-}@@[%thread]@@%level@@%logger{36}[%line]@@%msg%n +%d{-MM-dd HH:mm:ss.SSS}@@%X{traceId:-}@@%X{parentId:-}@@%X{spanId:-}@@[%thread]@@%level@@%logger{36}[%line]@@%msg%n
Re: [PR] Bump spring-boot-autoconfigure from 2.0.2.RELEASE to 2.5.15 [rocketmq-eventbridge]
2011shenlin closed pull request #111: Bump spring-boot-autoconfigure from 2.0.2.RELEASE to 2.5.15 URL: https://github.com/apache/rocketmq-eventbridge/pull/111 -- 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] Bump spring-boot-autoconfigure from 2.0.2.RELEASE to 2.5.15 [rocketmq-eventbridge]
dependabot[bot] commented on PR #111: URL: https://github.com/apache/rocketmq-eventbridge/pull/111#issuecomment-2058104063 OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. If you change your mind, just re-open this PR and I'll resolve any conflicts on it. -- 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-eventbridge) branch dependabot/maven/org.springframework.boot-spring-boot-autoconfigure-2.5.15 deleted (was 5cfdc3e)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.springframework.boot-spring-boot-autoconfigure-2.5.15 in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git was 5cfdc3e Bump spring-boot-autoconfigure from 2.0.2.RELEASE to 2.5.15 The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
Re: [PR] build(deps-dev): bump junit from 4.11 to 4.13.1 in /adapter/storage [rocketmq-eventbridge]
2011shenlin merged PR #117: URL: https://github.com/apache/rocketmq-eventbridge/pull/117 -- 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-eventbridge) branch dependabot/maven/adapter/storage/junit-junit-4.13.1 deleted (was 4f1a8fc)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/adapter/storage/junit-junit-4.13.1 in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git was 4f1a8fc build(deps-dev): bump junit from 4.11 to 4.13.1 in /adapter/storage The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
(rocketmq-eventbridge) branch main updated: build(deps-dev): bump junit from 4.11 to 4.13.1 in /adapter/storage (#117)
This is an automated email from the ASF dual-hosted git repository. shenlin pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git The following commit(s) were added to refs/heads/main by this push: new b9e857f build(deps-dev): bump junit from 4.11 to 4.13.1 in /adapter/storage (#117) b9e857f is described below commit b9e857fe3bac49a262bba5ed6371f9d44658a2c9 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> AuthorDate: Tue Apr 16 10:06:15 2024 +0800 build(deps-dev): bump junit from 4.11 to 4.13.1 in /adapter/storage (#117) Bumps [junit](https://github.com/junit-team/junit4) from 4.11 to 4.13.1. - [Release notes](https://github.com/junit-team/junit4/releases) - [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.11.md) - [Commits](https://github.com/junit-team/junit4/compare/r4.11...r4.13.1) --- updated-dependencies: - dependency-name: junit:junit dependency-type: direct:development ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- adapter/storage/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adapter/storage/pom.xml b/adapter/storage/pom.xml index 66fae5b..070507c 100644 --- a/adapter/storage/pom.xml +++ b/adapter/storage/pom.xml @@ -73,7 +73,7 @@ junit junit - 4.11 + 4.13.1 test
[PR] build(deps): bump com.jayway.jsonpath:json-path from 2.4.0 to 2.9.0 [rocketmq-eventbridge]
dependabot[bot] opened a new pull request, #167: URL: https://github.com/apache/rocketmq-eventbridge/pull/167 Bumps [com.jayway.jsonpath:json-path](https://github.com/jayway/JsonPath) from 2.4.0 to 2.9.0. Release notes Sourced from https://github.com/jayway/JsonPath/releases";>com.jayway.jsonpath:json-path's releases. json-path-2.9.0 What's Changed Fix for https://github.com/advisories/GHSA-pfh2-hfmq-phg5";>CVE-2023-51074. update dependencies by https://github.com/SingingBush";>@SingingBush in https://redirect.github.com/json-path/JsonPath/pull/965";>json-path/JsonPath#965 JPMS: define Automatic-Module-Name as json.path by https://github.com/SingingBush";>@SingingBush in https://redirect.github.com/json-path/JsonPath/pull/966";>json-path/JsonPath#966 Bump json-smart version from 2.4.10 to 2.5.0 by https://github.com/shoothzj";>@shoothzj in https://redirect.github.com/json-path/JsonPath/pull/945";>json-path/JsonPath#945 Fixed rendering error on $..book[?(@.price <= $['expensive'])] in README.md by https://github.com/lulunac27a";>@lulunac27a in https://redirect.github.com/json-path/JsonPath/pull/967";>json-path/JsonPath#967 [build] Remove deprecated gradle convetion usage by https://github.com/shoothzj";>@shoothzj in https://redirect.github.com/json-path/JsonPath/pull/946";>json-path/JsonPath#946 Check for the existence of the next significant bracket by https://github.com/twobiers";>@twobiers in https://redirect.github.com/json-path/JsonPath/pull/985";>json-path/JsonPath#985 Update versions by https://github.com/kallestenflo";>@kallestenflo in https://redirect.github.com/json-path/JsonPath/pull/987";>json-path/JsonPath#987 New Contributors https://github.com/lulunac27a";>@lulunac27a made their first contribution in https://redirect.github.com/json-path/JsonPath/pull/967";>json-path/JsonPath#967 https://github.com/twobiers";>@twobiers made their first contribution in https://redirect.github.com/json-path/JsonPath/pull/985";>json-path/JsonPath#985 Full Changelog: https://github.com/json-path/JsonPath/compare/json-path-2.8.0...json-path-2.9.0";>https://github.com/json-path/JsonPath/compare/json-path-2.8.0...json-path-2.9.0 json-path-2.8.0 Upgrade json-smart to fix https://www.cve.org/CVERecord?id=CVE-2023-1370";>https://www.cve.org/CVERecord?id=CVE-2023-1370 json-path-2.7.0 No release notes provided. json-path-2.6.0 No release notes provided. json-path-2.5.0 No release notes provided. Commits https://github.com/json-path/JsonPath/commit/af7e516c69df680a6584fca7180ef082eb67c96c";>af7e516 Release 2.9.0 https://github.com/json-path/JsonPath/commit/af4dfcc17a9cb69002a5abc6e88a7745aef4c43d";>af4dfcc Make PropertyPathToken public, closes https://redirect.github.com/jayway/JsonPath/issues/955";>#955 https://github.com/json-path/JsonPath/commit/49b1151b11fbb147382c9c0f1c898b1ca0d2d3ec";>49b1151 Update versions (https://redirect.github.com/jayway/JsonPath/issues/987";>#987) https://github.com/json-path/JsonPath/commit/71a09c1193726c010917f1157ecbb069ad6c3e3b";>71a09c1 Check for the existence of the next significant bracket (https://redirect.github.com/jayway/JsonPath/issues/985";>#985) https://github.com/json-path/JsonPath/commit/900ebfe58f4c9e78b209401c642320ef332ba618";>900ebfe Remove deprecated gradle usage (https://redirect.github.com/jayway/JsonPath/issues/946";>#946) https://github.com/json-path/JsonPath/commit/946274d3cb2ee51098bc0d8ba767a01da525218f";>946274d Fixed rendering error on $..book[?(@.price <= $['expensive'])] in README.md... https://github.com/json-path/JsonPath/commit/425bcb18a5ffdfafcc60190c892f941ea4117fb7";>425bcb1 Bump json-smart version from 2.4.10 to 2.5.0 (https://redirect.github.com/jayway/JsonPath/issues/945";>#945) https://github.com/json-path/JsonPath/commit/2d57ab361512451fc3352816648357ffbd5c2a13";>2d57ab3 JPMS: define Automatic-Module-Name as json.path (https://redirect.github.com/jayway/JsonPath/issues/966";>#966) https://github.com/json-path/JsonPath/commit/1a57f7800b2c101b6fca218c3f04a8b6adf04122";>1a57f78 update dependencies (https://redirect.github.com/jayway/JsonPath/issues/965";>#965) https://github.com/json-path/JsonPath/commit/21de6207945dfca6b49809fa9dd08c3781b7ab9d";>21de620 Prepare next version Additional commits viewable in https://github.com/jayway/JsonPath/compare/json-path-2.4.0...json-path-2.9.0";>compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a r
(rocketmq-eventbridge) branch main updated (b9e857f -> ebfd47c)
This is an automated email from the ASF dual-hosted git repository. shenlin pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git from b9e857f build(deps-dev): bump junit from 4.11 to 4.13.1 in /adapter/storage (#117) add ebfd47c build(deps): bump junit from 4.10 to 4.13.1 in /adapter/runtime (#116) No new revisions were added by this update. Summary of changes: adapter/runtime/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[PR] build(deps): bump com.jayway.jsonpath:json-path from 2.4.0 to 2.9.0 in /supports/connect-filter-transform [rocketmq-eventbridge]
dependabot[bot] opened a new pull request, #168: URL: https://github.com/apache/rocketmq-eventbridge/pull/168 Bumps [com.jayway.jsonpath:json-path](https://github.com/jayway/JsonPath) from 2.4.0 to 2.9.0. Release notes Sourced from https://github.com/jayway/JsonPath/releases";>com.jayway.jsonpath:json-path's releases. json-path-2.9.0 What's Changed Fix for https://github.com/advisories/GHSA-pfh2-hfmq-phg5";>CVE-2023-51074. update dependencies by https://github.com/SingingBush";>@SingingBush in https://redirect.github.com/json-path/JsonPath/pull/965";>json-path/JsonPath#965 JPMS: define Automatic-Module-Name as json.path by https://github.com/SingingBush";>@SingingBush in https://redirect.github.com/json-path/JsonPath/pull/966";>json-path/JsonPath#966 Bump json-smart version from 2.4.10 to 2.5.0 by https://github.com/shoothzj";>@shoothzj in https://redirect.github.com/json-path/JsonPath/pull/945";>json-path/JsonPath#945 Fixed rendering error on $..book[?(@.price <= $['expensive'])] in README.md by https://github.com/lulunac27a";>@lulunac27a in https://redirect.github.com/json-path/JsonPath/pull/967";>json-path/JsonPath#967 [build] Remove deprecated gradle convetion usage by https://github.com/shoothzj";>@shoothzj in https://redirect.github.com/json-path/JsonPath/pull/946";>json-path/JsonPath#946 Check for the existence of the next significant bracket by https://github.com/twobiers";>@twobiers in https://redirect.github.com/json-path/JsonPath/pull/985";>json-path/JsonPath#985 Update versions by https://github.com/kallestenflo";>@kallestenflo in https://redirect.github.com/json-path/JsonPath/pull/987";>json-path/JsonPath#987 New Contributors https://github.com/lulunac27a";>@lulunac27a made their first contribution in https://redirect.github.com/json-path/JsonPath/pull/967";>json-path/JsonPath#967 https://github.com/twobiers";>@twobiers made their first contribution in https://redirect.github.com/json-path/JsonPath/pull/985";>json-path/JsonPath#985 Full Changelog: https://github.com/json-path/JsonPath/compare/json-path-2.8.0...json-path-2.9.0";>https://github.com/json-path/JsonPath/compare/json-path-2.8.0...json-path-2.9.0 json-path-2.8.0 Upgrade json-smart to fix https://www.cve.org/CVERecord?id=CVE-2023-1370";>https://www.cve.org/CVERecord?id=CVE-2023-1370 json-path-2.7.0 No release notes provided. json-path-2.6.0 No release notes provided. json-path-2.5.0 No release notes provided. Commits https://github.com/json-path/JsonPath/commit/af7e516c69df680a6584fca7180ef082eb67c96c";>af7e516 Release 2.9.0 https://github.com/json-path/JsonPath/commit/af4dfcc17a9cb69002a5abc6e88a7745aef4c43d";>af4dfcc Make PropertyPathToken public, closes https://redirect.github.com/jayway/JsonPath/issues/955";>#955 https://github.com/json-path/JsonPath/commit/49b1151b11fbb147382c9c0f1c898b1ca0d2d3ec";>49b1151 Update versions (https://redirect.github.com/jayway/JsonPath/issues/987";>#987) https://github.com/json-path/JsonPath/commit/71a09c1193726c010917f1157ecbb069ad6c3e3b";>71a09c1 Check for the existence of the next significant bracket (https://redirect.github.com/jayway/JsonPath/issues/985";>#985) https://github.com/json-path/JsonPath/commit/900ebfe58f4c9e78b209401c642320ef332ba618";>900ebfe Remove deprecated gradle usage (https://redirect.github.com/jayway/JsonPath/issues/946";>#946) https://github.com/json-path/JsonPath/commit/946274d3cb2ee51098bc0d8ba767a01da525218f";>946274d Fixed rendering error on $..book[?(@.price <= $['expensive'])] in README.md... https://github.com/json-path/JsonPath/commit/425bcb18a5ffdfafcc60190c892f941ea4117fb7";>425bcb1 Bump json-smart version from 2.4.10 to 2.5.0 (https://redirect.github.com/jayway/JsonPath/issues/945";>#945) https://github.com/json-path/JsonPath/commit/2d57ab361512451fc3352816648357ffbd5c2a13";>2d57ab3 JPMS: define Automatic-Module-Name as json.path (https://redirect.github.com/jayway/JsonPath/issues/966";>#966) https://github.com/json-path/JsonPath/commit/1a57f7800b2c101b6fca218c3f04a8b6adf04122";>1a57f78 update dependencies (https://redirect.github.com/jayway/JsonPath/issues/965";>#965) https://github.com/json-path/JsonPath/commit/21de6207945dfca6b49809fa9dd08c3781b7ab9d";>21de620 Prepare next version Additional commits viewable in https://github.com/jayway/JsonPath/compare/json-path-2.4.0...json-path-2.9.0";>compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a r
Re: [PR] build(deps): bump junit from 4.10 to 4.13.1 in /adapter/runtime [rocketmq-eventbridge]
2011shenlin merged PR #116: URL: https://github.com/apache/rocketmq-eventbridge/pull/116 -- 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
[PR] build(deps): bump org.springframework:spring-context from 5.0.6.RELEASE to 5.2.22.RELEASE [rocketmq-eventbridge]
dependabot[bot] opened a new pull request, #170: URL: https://github.com/apache/rocketmq-eventbridge/pull/170 Bumps [org.springframework:spring-context](https://github.com/spring-projects/spring-framework) from 5.0.6.RELEASE to 5.2.22.RELEASE. Release notes Sourced from https://github.com/spring-projects/spring-framework/releases";>org.springframework:spring-context's releases. v5.2.22.RELEASE :star: New Features Refine CachedIntrospectionResults property introspection https://redirect.github.com/spring-projects/spring-framework/issues/28446";>#28446 :lady_beetle: Bug Fixes Ignore invalid STOMP frame https://redirect.github.com/spring-projects/spring-framework/issues/28444";>#28444 v5.2.21.RELEASE :star: New Features Remove DNS lookups during websocket connection initiation https://redirect.github.com/spring-projects/spring-framework/issues/28281";>#28281 :lady_beetle: Bug Fixes Improve documentation and matching algorithm in data binders https://redirect.github.com/spring-projects/spring-framework/issues/28334";>#28334 CodeGenerationException thrown when using AnnotationMBeanExporter on JDK 17 https://redirect.github.com/spring-projects/spring-framework/issues/28279";>#28279 ResponseEntity objects are accumulated in ConcurrentReferenceHashMap https://redirect.github.com/spring-projects/spring-framework/issues/28273";>#28273 NotWritablePropertyException when attempting to declaratively configure ClassLoader properties https://redirect.github.com/spring-projects/spring-framework/issues/28272";>#28272 v5.2.20.RELEASE :star: New Features Restrict access to property paths on Class references https://redirect.github.com/spring-projects/spring-framework/issues/28262";>#28262 Improve diagnostics in SpEL for large array creation https://redirect.github.com/spring-projects/spring-framework/issues/28257";>#28257 v5.2.19.RELEASE :star: New Features Declare serialVersionUID on DefaultAopProxyFactory https://redirect.github.com/spring-projects/spring-framework/issues/27785";>#27785 Use ByteArrayDecoder in DefaultClientResponse::createException https://redirect.github.com/spring-projects/spring-framework/issues/27667";>#27667 :lady_beetle: Bug Fixes ProxyFactoryBean getObject called before setInterceptorNames, silently creating an invalid proxy [SPR-7582] https://redirect.github.com/spring-projects/spring-framework/issues/27817";>#27817 Possible NPE in Spring MVC LogFormatUtils https://redirect.github.com/spring-projects/spring-framework/issues/27783";>#27783 UndertowHeadersAdapter's remove() method violates Map contract https://redirect.github.com/spring-projects/spring-framework/issues/27593";>#27593 Fix assertion failure messages in DefaultDataBuffer.checkIndex() https://redirect.github.com/spring-projects/spring-framework/issues/27577";>#27577 :notebook_with_decorative_cover: Documentation Lazy annotation throws exception if non-required bean does not exist https://redirect.github.com/spring-projects/spring-framework/issues/27660";>#27660 Incorrect Javadoc in [NamedParameter]JdbcOperations.queryForObject methods regarding exceptions https://redirect.github.com/spring-projects/spring-framework/issues/27581";>#27581 DefaultResponseErrorHandler update javadoc comment https://redirect.github.com/spring-projects/spring-framework/issues/27571";>#27571 :hammer: Dependency Upgrades Upgrade to Reactor Dysprosium-SR25 https://redirect.github.com/spring-projects/spring-framework/issues/27635";>#27635 Upgrade to Log4j2 2.16.0 https://redirect.github.com/spring-projects/spring-framework/issues/27825";>#27825 ... (truncated) Commits https://github.com/spring-projects/spring-framework/commit/8f4c17273499280394c6824d179e25702c8992f4";>8f4c172 Release v5.2.22.RELEASE https://github.com/spring-projects/spring-framework/commit/9f238c997d914cf9162dac9801a2f56dae359a3f";>9f238c9 Polishing https://github.com/spring-projects/spring-framework/commit/50177b1ad3485bd44239b1756f6c14607476fcf2";>50177b1 Refine CachedIntrospectionResults property introspection https://github.com/spring-projects/spring-framework/commit/159a99bbafdd6c01871228113d7042c3f83f360f";>159a99b Ignore invalid STOMP frame https://github.com/spring-projects/spring-framework/commit/41e158c93de4c62bf3d8aa768592ded42b08f9ef";>41e158c Next development version (v5.2.22.BUILD-SNAPSHOT) https://github.com/spring-projects/spring-framework/commit/833e750175349ab4fd502109a8b41af77e25cdea";>833e750 Improve documentation and matching algorithm in data binders https://github.com/spring-projects/spring-framework/commit/d70054d6864c78a300210490a0fb3af0e1f1b84f";>d70054d Upgrade to Log4j2 2.17.2 https://github.com/spring-projects/spring-framework/commit/36e4951b5efef4bda9227e4ff41df14744aa7efb";>36e4951 Polishing https://github.com/sp
(rocketmq-eventbridge) branch dependabot/maven/org.springframework-spring-context-5.2.22.RELEASE created (now f6b2da4)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.springframework-spring-context-5.2.22.RELEASE in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git at f6b2da4 build(deps): bump org.springframework:spring-context No new revisions were added by this update.
(rocketmq-eventbridge) branch dependabot/maven/com.jayway.jsonpath-json-path-2.9.0 created (now bc5d9d0)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/com.jayway.jsonpath-json-path-2.9.0 in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git at bc5d9d0 build(deps): bump com.jayway.jsonpath:json-path from 2.4.0 to 2.9.0 No new revisions were added by this update.
[PR] build(deps): bump ch.qos.logback:logback-core from 1.2.9 to 1.2.13 [rocketmq-eventbridge]
dependabot[bot] opened a new pull request, #169: URL: https://github.com/apache/rocketmq-eventbridge/pull/169 Bumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.2.9 to 1.2.13. Commits https://github.com/qos-ch/logback/commit/2648b9e7fbb47426c89b9c93b411c07484e8f277";>2648b9e prepare release 1.2.13 https://github.com/qos-ch/logback/commit/bb095154be011267b64e37a1d401546e7cc2b7c3";>bb09515 fix CVE-2023-6378 https://github.com/qos-ch/logback/commit/45732949bfb845df04cbe65292cf48aaa090cb1d";>4573294 start work on 1.2.13-SNAPSHOT https://github.com/qos-ch/logback/commit/a388193052c298ca87cc64192319df723288c6ab";>a388193 Merge branch 'branch_1.2.x' of github.com:qos-ch/logback into branch_1.2.x https://github.com/qos-ch/logback/commit/de44dc422bc3da1d7808283851324d960b492d4d";>de44dc4 prepare release 1.2.12 https://github.com/qos-ch/logback/commit/ca0cf172f680308938515b8a5d69348759ee947c";>ca0cf17 Merge pull request https://redirect.github.com/qos-ch/logback/issues/532";>#532 from joakime/fix-jetty-requestlog https://github.com/qos-ch/logback/commit/e31609b1980b9ba986344aae3cab7275fa2b4935";>e31609b removed unused files https://github.com/qos-ch/logback/commit/21e29efb284766f386781175b2ba18585b690154";>21e29ef Merge pull request https://redirect.github.com/qos-ch/logback/issues/567";>#567 from spliffone/LOGBACK-1633 https://github.com/qos-ch/logback/commit/e869000e1d5901e6aa6f46cc6575ee2137f15b69";>e869000 fix: published POM file contain the wrong scm URL https://github.com/qos-ch/logback/commit/009ea46cb81a015f2ca312bde6e823581b93b37a";>009ea46 version for next dev cycle Additional commits viewable in https://github.com/qos-ch/logback/compare/v_1.2.9...v_1.2.13";>compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/rocketmq-eventbridge/network/alerts). -- 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-eventbridge) branch dependabot/maven/supports/connect-filter-transform/com.jayway.jsonpath-json-path-2.9.0 created (now 28a5504)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/supports/connect-filter-transform/com.jayway.jsonpath-json-path-2.9.0 in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git at 28a5504 build(deps): bump com.jayway.jsonpath:json-path No new revisions were added by this update.
(rocketmq-eventbridge) branch dependabot/maven/adapter/runtime/junit-junit-4.13.1 deleted (was 62cfae0)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/adapter/runtime/junit-junit-4.13.1 in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git was 62cfae0 build(deps): bump junit from 4.10 to 4.13.1 in /adapter/runtime The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
(rocketmq-eventbridge) branch dependabot/maven/ch.qos.logback-logback-core-1.2.13 created (now 86035f6)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/ch.qos.logback-logback-core-1.2.13 in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git at 86035f6 build(deps): bump ch.qos.logback:logback-core from 1.2.9 to 1.2.13 No new revisions were added by this update.
Re: [PR] build(deps-dev): bump junit:junit from 4.11 to 4.13.1 in /adapter/benchmark [rocketmq-eventbridge]
2011shenlin merged PR #144: URL: https://github.com/apache/rocketmq-eventbridge/pull/144 -- 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-eventbridge): Workflow run "mvn package with test case" failed!
The GitHub Actions job "mvn package with test case" on rocketmq-eventbridge.git has failed. Run started by GitHub user dependabot[bot] (triggered by dependabot[bot]). Head commit for run: bc5d9d0565af65b9025b895e981bb109a8d35152 / dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> build(deps): bump com.jayway.jsonpath:json-path from 2.4.0 to 2.9.0 Bumps [com.jayway.jsonpath:json-path](https://github.com/jayway/JsonPath) from 2.4.0 to 2.9.0. - [Release notes](https://github.com/jayway/JsonPath/releases) - [Changelog](https://github.com/json-path/JsonPath/blob/master/changelog.md) - [Commits](https://github.com/jayway/JsonPath/compare/json-path-2.4.0...json-path-2.9.0) --- updated-dependencies: - dependency-name: com.jayway.jsonpath:json-path dependency-type: direct:production ... Signed-off-by: dependabot[bot] Report URL: https://github.com/apache/rocketmq-eventbridge/actions/runs/8698873466 With regards, GitHub Actions via GitBox
(rocketmq-eventbridge) branch main updated: build(deps-dev): bump junit:junit in /adapter/benchmark (#144)
This is an automated email from the ASF dual-hosted git repository. shenlin pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git The following commit(s) were added to refs/heads/main by this push: new 1cc7723 build(deps-dev): bump junit:junit in /adapter/benchmark (#144) 1cc7723 is described below commit 1cc77235185bf996d83d9d7c5d954d99d2e43186 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> AuthorDate: Tue Apr 16 10:07:24 2024 +0800 build(deps-dev): bump junit:junit in /adapter/benchmark (#144) Bumps [junit:junit](https://github.com/junit-team/junit4) from 4.11 to 4.13.1. - [Release notes](https://github.com/junit-team/junit4/releases) - [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.11.md) - [Commits](https://github.com/junit-team/junit4/compare/r4.11...r4.13.1) --- updated-dependencies: - dependency-name: junit:junit dependency-type: direct:development ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- adapter/benchmark/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adapter/benchmark/pom.xml b/adapter/benchmark/pom.xml index 7369826..e84f8e7 100644 --- a/adapter/benchmark/pom.xml +++ b/adapter/benchmark/pom.xml @@ -49,7 +49,7 @@ junit junit - 4.11 + 4.13.1 test
(rocketmq-eventbridge) branch dependabot/maven/adapter/benchmark/junit-junit-4.13.1 deleted (was 0052bd7)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/adapter/benchmark/junit-junit-4.13.1 in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git was 0052bd7 build(deps-dev): bump junit:junit in /adapter/benchmark The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
Re: [PR] build(deps): bump org.springframework:spring-context from 5.0.6.RELEASE to 5.2.22.RELEASE [rocketmq-eventbridge]
2011shenlin closed pull request #170: build(deps): bump org.springframework:spring-context from 5.0.6.RELEASE to 5.2.22.RELEASE URL: https://github.com/apache/rocketmq-eventbridge/pull/170 -- 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(deps): bump org.springframework:spring-context from 5.0.6.RELEASE to 5.2.22.RELEASE [rocketmq-eventbridge]
dependabot[bot] commented on PR #170: URL: https://github.com/apache/rocketmq-eventbridge/pull/170#issuecomment-2058105516 OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. If you change your mind, just re-open this PR and I'll resolve any conflicts on it. -- 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-eventbridge) branch dependabot/maven/org.springframework-spring-context-5.2.22.RELEASE deleted (was f6b2da4)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.springframework-spring-context-5.2.22.RELEASE in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git was f6b2da4 build(deps): bump org.springframework:spring-context The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
[GH] (rocketmq-eventbridge): Workflow run "mvn package with test case" failed!
The GitHub Actions job "mvn package with test case" on rocketmq-eventbridge.git has failed. Run started by GitHub user dependabot[bot] (triggered by dependabot[bot]). Head commit for run: f6b2da4a640057e2c92dbfd11f10b90a13ab0d98 / dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> build(deps): bump org.springframework:spring-context Bumps [org.springframework:spring-context](https://github.com/spring-projects/spring-framework) from 5.0.6.RELEASE to 5.2.22.RELEASE. - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.0.6.RELEASE...v5.2.22.RELEASE) --- updated-dependencies: - dependency-name: org.springframework:spring-context dependency-type: direct:production ... Signed-off-by: dependabot[bot] Report URL: https://github.com/apache/rocketmq-eventbridge/actions/runs/8698873773 With regards, GitHub Actions via GitBox
[GH] (rocketmq-eventbridge): Workflow run "mvn package with test case" is working again!
The GitHub Actions job "mvn package with test case" on rocketmq-eventbridge.git has succeeded. Run started by GitHub user dependabot[bot] (triggered by dependabot[bot]). Head commit for run: 28a550478913406f8b440317b16058f961b92eb4 / dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> build(deps): bump com.jayway.jsonpath:json-path Bumps [com.jayway.jsonpath:json-path](https://github.com/jayway/JsonPath) from 2.4.0 to 2.9.0. - [Release notes](https://github.com/jayway/JsonPath/releases) - [Changelog](https://github.com/json-path/JsonPath/blob/master/changelog.md) - [Commits](https://github.com/jayway/JsonPath/compare/json-path-2.4.0...json-path-2.9.0) --- updated-dependencies: - dependency-name: com.jayway.jsonpath:json-path dependency-type: direct:production ... Signed-off-by: dependabot[bot] Report URL: https://github.com/apache/rocketmq-eventbridge/actions/runs/8698873587 With regards, GitHub Actions via GitBox
Re: [I] [Bug] Unable to consume messages orderly for ordered message while using RocketMQ 5 client [rocketmq]
CodingOX commented on issue #7999: URL: https://github.com/apache/rocketmq/issues/7999#issuecomment-2058117816 > Configure your consumer group as order with "-o" option. > > ./mqadmin updateSubGroup -c DefaultCluster -n 192.168.10.233:9876 -g OrderConsumerGroupV3 -o true This is my original shell that from official document. I have used `-o true` for the topic creation. ``` ./mqadmin updateTopic -c DefaultCluster -t FIFOTopic -o true -n 192.168.10.233:9876 -a +message.type=FIFO ``` So this cause of the problem can be ruled out. -- 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] [RIP-68] RocketMQ ACL 2.0 [rocketmq]
zhangjidi2016 commented on issue #7560: URL: https://github.com/apache/rocketmq/issues/7560#issuecomment-2058165552 If you use the proxy cluster mode and enable authentication, each request is authenticated twice (proxy and broker)?@dingshuangxi888 -- 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] Memory leakage detected when IndexStoreService is enabled and TieredMessageStore's FileSegment is PosixFileSegment [rocketmq]
caigy commented on issue #8017: URL: https://github.com/apache/rocketmq/issues/8017#issuecomment-2058233260 @bxfjb If you want to extend the size of `writeFileChannel` to make `FileChannel.transferTo()` successful, you may try writing a byte at `position - 1`: ```java writeFileChannel.write(ByteBuffer.wrap(new byte[]{0}), position - 1); ``` -- 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 #726] Add test module to provide integration test for java client [rocketmq-clients]
drpmma merged PR #727: URL: https://github.com/apache/rocketmq-clients/pull/727 -- 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-clients) branch master updated: [ISSUE #726] Add test module to provide integration test for java client (#727)
This is an automated email from the ASF dual-hosted git repository. zhouxzhan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git The following commit(s) were added to refs/heads/master by this push: new 8f16d838 [ISSUE #726] Add test module to provide integration test for java client (#727) 8f16d838 is described below commit 8f16d838bafcb7d3d4566cc446753e8e9582b8a8 Author: Zhouxiang Zhan AuthorDate: Tue Apr 16 14:20:16 2024 +0800 [ISSUE #726] Add test module to provide integration test for java client (#727) * Add GrpcServerIntegrationTest * Add AttemptIdIntegrationTest * fix jdk17 SelfSignedCertificate --- java/pom.xml | 15 ++ java/test/pom.xml | 71 +++ .../test/client/AttemptIdIntegrationTest.java | 224 + .../rocketmq/test/helper/ResponseWriter.java | 71 +++ .../test/server/GrpcServerIntegrationTest.java | 61 ++ .../apache/rocketmq/test/server/MockServer.java| 35 6 files changed, 477 insertions(+) diff --git a/java/pom.xml b/java/pom.xml index 779a74d4..f081c19a 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -31,6 +31,7 @@ client-apis client client-shade +test @@ -62,6 +63,7 @@ 2.6.0 3.10.0 4.1.0 +1.77 3.8.0 @@ -166,6 +168,12 @@ grpc-stub ${grpc.version} + +io.grpc +grpc-testing +test +${grpc.version} + com.google.guava guava @@ -247,6 +255,13 @@ ${awaitility.version} test + + +org.bouncycastle +bcpkix-jdk18on +${bcpkix.version} +test + diff --git a/java/test/pom.xml b/java/test/pom.xml new file mode 100644 index ..55f643e3 --- /dev/null +++ b/java/test/pom.xml @@ -0,0 +1,71 @@ + + + +http://maven.apache.org/POM/4.0.0"; + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd";> +4.0.0 + +org.apache.rocketmq +rocketmq-client-java-parent +5.0.7-SNAPSHOT + + +test + + +8 +UTF-8 + + + + +${project.groupId} +rocketmq-client-java-noshade + + +io.grpc +grpc-testing +test + + +junit +junit +test + + +org.assertj +assertj-core +test + + +org.mockito +mockito-core +test + + +org.awaitility +awaitility +test + + +org.bouncycastle +bcpkix-jdk18on +test + + + + \ No newline at end of file diff --git a/java/test/src/test/java/org/apache/rocketmq/test/client/AttemptIdIntegrationTest.java b/java/test/src/test/java/org/apache/rocketmq/test/client/AttemptIdIntegrationTest.java new file mode 100644 index ..b03cf70d --- /dev/null +++ b/java/test/src/test/java/org/apache/rocketmq/test/client/AttemptIdIntegrationTest.java @@ -0,0 +1,224 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.rocketmq.test.client; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.awaitility.Awaitility.await; + +import apache.rocketmq.v2.Address; +import apache.rocketmq.v2.Assignment; +import apache.rocketmq.v2.Broker; +import apache.rocketmq.v2.Code; +import apache.rocketmq.v2.Endpoints; +import apache.rocketmq.v2.ExponentialBackoff; +import apache.rocketmq.v2.HeartbeatRequest; +import apache.rocketmq.v2.HeartbeatResponse; +import apache.rocketmq.v2.MessageQueue; +import apache.rocketmq.v2.MessageType; +import a
[GH] (rocketmq-clients): Workflow run "Golang Coverage" failed!
The GitHub Actions job "Golang Coverage" on rocketmq-clients.git has failed. Run started by GitHub user drpmma (triggered by drpmma). Head commit for run: 8f16d838bafcb7d3d4566cc446753e8e9582b8a8 / Zhouxiang Zhan [ISSUE #726] Add test module to provide integration test for java client (#727) * Add GrpcServerIntegrationTest * Add AttemptIdIntegrationTest * fix jdk17 SelfSignedCertificate Report URL: https://github.com/apache/rocketmq-clients/actions/runs/8700894316 With regards, GitHub Actions via GitBox
Re: [I] [Enhancement] Add test module to provide integration test for java client [rocketmq-clients]
drpmma closed issue #726: [Enhancement] Add test module to provide integration test for java client URL: https://github.com/apache/rocketmq-clients/issues/726 -- 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-clients): Workflow run "Node.js Coverage" failed!
The GitHub Actions job "Node.js Coverage" on rocketmq-clients.git has failed. Run started by GitHub user drpmma (triggered by drpmma). Head commit for run: 8f16d838bafcb7d3d4566cc446753e8e9582b8a8 / Zhouxiang Zhan [ISSUE #726] Add test module to provide integration test for java client (#727) * Add GrpcServerIntegrationTest * Add AttemptIdIntegrationTest * fix jdk17 SelfSignedCertificate Report URL: https://github.com/apache/rocketmq-clients/actions/runs/8700894319 With regards, GitHub Actions via GitBox
[GH] (rocketmq-clients): Workflow run "Java Coverage" failed!
The GitHub Actions job "Java Coverage" on rocketmq-clients.git has failed. Run started by GitHub user drpmma (triggered by drpmma). Head commit for run: 8f16d838bafcb7d3d4566cc446753e8e9582b8a8 / Zhouxiang Zhan [ISSUE #726] Add test module to provide integration test for java client (#727) * Add GrpcServerIntegrationTest * Add AttemptIdIntegrationTest * fix jdk17 SelfSignedCertificate Report URL: https://github.com/apache/rocketmq-clients/actions/runs/8700894318 With regards, GitHub Actions via GitBox
[GH] (rocketmq-clients): Workflow run "Rust Coverage" failed!
The GitHub Actions job "Rust Coverage" on rocketmq-clients.git has failed. Run started by GitHub user drpmma (triggered by drpmma). Head commit for run: 8f16d838bafcb7d3d4566cc446753e8e9582b8a8 / Zhouxiang Zhan [ISSUE #726] Add test module to provide integration test for java client (#727) * Add GrpcServerIntegrationTest * Add AttemptIdIntegrationTest * fix jdk17 SelfSignedCertificate Report URL: https://github.com/apache/rocketmq-clients/actions/runs/8700894314 With regards, GitHub Actions via GitBox
[GH] (rocketmq-clients): Workflow run "CPP Coverage" failed!
The GitHub Actions job "CPP Coverage" on rocketmq-clients.git has failed. Run started by GitHub user drpmma (triggered by drpmma). Head commit for run: 8f16d838bafcb7d3d4566cc446753e8e9582b8a8 / Zhouxiang Zhan [ISSUE #726] Add test module to provide integration test for java client (#727) * Add GrpcServerIntegrationTest * Add AttemptIdIntegrationTest * fix jdk17 SelfSignedCertificate Report URL: https://github.com/apache/rocketmq-clients/actions/runs/8700894343 With regards, GitHub Actions via GitBox
[I] [Enhancement] Add expression filtering capability to the pullBlockIfNotFound method of pull consumer [rocketmq]
RongtongJin opened a new issue, #8023: URL: https://github.com/apache/rocketmq/issues/8023 ### Before Creating the Enhancement Request - [X] I have confirmed that this should be classified as an enhancement rather than a bug/feature. ### Summary Add expression filtering capability to the pullBlockIfNotFound method of pull consumer ### Motivation Add expression filtering capability to the pullBlockIfNotFound method of pull consumer ### Describe the Solution You'd Like Add expression filtering capability to the pullBlockIfNotFound method of pull consumer ### Describe Alternatives You've Considered No ### Additional Context No -- 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
[PR] [ISSUE #8023] Add expression filtering capability to the pullBlockIfNotFound method of pull consumer [rocketmq]
RongtongJin opened a new pull request, #8024: URL: https://github.com/apache/rocketmq/pull/8024 ### Which Issue(s) This PR Fixes Fixes #8023 ### Brief Description Add expression filtering capability to the pullBlockIfNotFound method of pull consumer ### How Did You Test This Change? -- 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 Bazel" failed!
The GitHub Actions job "Build and Run Tests by Bazel" on rocketmq.git has failed. Run started by GitHub user RongtongJin (triggered by RongtongJin). Head commit for run: bb2a791ccc7696e619c74f75841de50625509ea2 / RongtongJin Add expression filtering capability to the pullBlockIfNotFound method of pull consumer Report URL: https://github.com/apache/rocketmq/actions/runs/8701078744 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: ac5545cca47d4075c1f4e6f9bbdcbe9b34da5465 / 高木同学 [ISSUE #8020] Fix document typo (#8021) Report URL: https://github.com/apache/rocketmq/actions/runs/8701103912 With regards, GitHub Actions via GitBox