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 8e7e2b5f50 [ISSUE #7574] Fix RunningFlags conflict 8e7e2b5f50 is described below commit 8e7e2b5f50e0db14b77462ef1574d4020c0fd986 Author: guyinyou <36399867+guyin...@users.noreply.github.com> AuthorDate: Mon Nov 20 19:32:57 2023 +0800 [ISSUE #7574] Fix RunningFlags conflict Co-authored-by: guyinyou <guyinyou....@alibaba-inc.com> --- store/src/main/java/org/apache/rocketmq/store/RunningFlags.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/src/main/java/org/apache/rocketmq/store/RunningFlags.java b/store/src/main/java/org/apache/rocketmq/store/RunningFlags.java index 91fcb155a6..88b398a77e 100644 --- a/store/src/main/java/org/apache/rocketmq/store/RunningFlags.java +++ b/store/src/main/java/org/apache/rocketmq/store/RunningFlags.java @@ -30,7 +30,7 @@ public class RunningFlags { private static final int FENCED_BIT = 1 << 5; - private static final int LOGIC_DISK_FULL_BIT = 1 << 5; + private static final int LOGIC_DISK_FULL_BIT = 1 << 6; private volatile int flagBits = 0;