This is an automated email from the ASF dual-hosted git repository. hongshun pushed a commit to branch dlf-2.5 in repository https://gitbox.apache.org/repos/asf/fluss.git
commit bc79891ef53a050afb14a0833d8eaab82b26bc47 Author: Hongshun Wang <[email protected]> AuthorDate: Fri Aug 22 20:46:31 2025 +0800 fix errors. --- fluss-rpc/src/main/java/com/alibaba/fluss/rpc/protocol/Errors.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluss-rpc/src/main/java/com/alibaba/fluss/rpc/protocol/Errors.java b/fluss-rpc/src/main/java/com/alibaba/fluss/rpc/protocol/Errors.java index 5fca604bf..627575c1f 100644 --- a/fluss-rpc/src/main/java/com/alibaba/fluss/rpc/protocol/Errors.java +++ b/fluss-rpc/src/main/java/com/alibaba/fluss/rpc/protocol/Errors.java @@ -222,7 +222,7 @@ public enum Errors { "This most likely occurs because of a request being malformed by the client library or the message was sent to an incompatible server. See the server logs for more details.", InvalidRequestException::new), INVALID_ALTER_TABLE_EXCEPTION( - 40, "The alter table is invalid.", InvalidAlterTableException::new); + 55, "The alter table is invalid.", InvalidAlterTableException::new); private static final Logger LOG = LoggerFactory.getLogger(Errors.class);
