This is an automated email from the ASF dual-hosted git repository.
lizhimin 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 4b187c6e11 [ISSUE #9945] Use UniqueKey as the TimerDelKey value when
no namespace is appended (#9951)
4b187c6e11 is described below
commit 4b187c6e119864f11211c470e1a44fd3e2e37ecf
Author: imzs <[email protected]>
AuthorDate: Wed Dec 24 13:48:47 2025 +0800
[ISSUE #9945] Use UniqueKey as the TimerDelKey value when no namespace is
appended (#9951)
---
.../src/main/java/org/apache/rocketmq/store/timer/rocksdb/Timeline.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/store/src/main/java/org/apache/rocketmq/store/timer/rocksdb/Timeline.java
b/store/src/main/java/org/apache/rocketmq/store/timer/rocksdb/Timeline.java
index 922786bde9..740d5602b2 100644
--- a/store/src/main/java/org/apache/rocketmq/store/timer/rocksdb/Timeline.java
+++ b/store/src/main/java/org/apache/rocketmq/store/timer/rocksdb/Timeline.java
@@ -288,7 +288,7 @@ public class Timeline {
}
int separatorIndex = deleteKey.indexOf(DELETE_KEY_SPLIT);
if (separatorIndex == -1) {
- throw new IllegalArgumentException("Invalid deleteKey format");
+ return deleteKey;
}
return deleteKey.substring(separatorIndex + 1);
}