This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new 91d0bf92f49 branch-3.0: [bugfix](be) the config could not be modified 
on line #46470 (#46494)
91d0bf92f49 is described below

commit 91d0bf92f4996ce5ad65e3610c4fec39c7ca7136
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Jan 7 14:09:46 2025 +0800

    branch-3.0: [bugfix](be) the config could not be modified on line #46470 
(#46494)
    
    Cherry-picked from #46470
    
    Co-authored-by: yiguolei <[email protected]>
---
 be/src/common/config.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp
index e467558128a..a099ac02467 100644
--- a/be/src/common/config.cpp
+++ b/be/src/common/config.cpp
@@ -909,7 +909,7 @@ DEFINE_String(rpc_load_balancer, "rr");
 
 // a soft limit of string type length, the hard limit is 2GB - 4, but if too 
long will cause very low performance,
 // so we set a soft limit, default is 1MB
-DEFINE_mInt32(string_type_length_soft_limit_bytes, "1048576");
+DEFINE_Int32(string_type_length_soft_limit_bytes, "1048576");
 
 DEFINE_Validator(string_type_length_soft_limit_bytes,
                  [](const int config) -> bool { return config > 0 && config <= 
2147483643; });


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to