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 403ad6f66c [ISSUE #7679] Optimize the serialization of RemotingCommand
processTimer property (#7683)
403ad6f66c is described below
commit 403ad6f66ce9910b23b15be6f540626db4c961ee
Author: mxsm <[email protected]>
AuthorDate: Wed Dec 20 08:45:08 2023 +0800
[ISSUE #7679] Optimize the serialization of RemotingCommand processTimer
property (#7683)
---
.../java/org/apache/rocketmq/remoting/protocol/RemotingCommand.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/remoting/src/main/java/org/apache/rocketmq/remoting/protocol/RemotingCommand.java
b/remoting/src/main/java/org/apache/rocketmq/remoting/protocol/RemotingCommand.java
index e93072adff..0fa275e822 100644
---
a/remoting/src/main/java/org/apache/rocketmq/remoting/protocol/RemotingCommand.java
+++
b/remoting/src/main/java/org/apache/rocketmq/remoting/protocol/RemotingCommand.java
@@ -95,7 +95,7 @@ public class RemotingCommand {
private transient byte[] body;
private boolean suspended;
- private Stopwatch processTimer;
+ private transient Stopwatch processTimer;
protected RemotingCommand() {
}