Merge pull request #9187 from ieQu1/master
chore(gen_rpc): Bump version to 3.0.0
This commit is contained in:
commit
6455085111
|
@ -10,6 +10,7 @@
|
||||||
This change fixed it to only send back the message ID.
|
This change fixed it to only send back the message ID.
|
||||||
* Add /trace/:name/log_detail HTTP API to return trace file's size and mtime [#9152](https://github.com/emqx/emqx/pull/9152)
|
* Add /trace/:name/log_detail HTTP API to return trace file's size and mtime [#9152](https://github.com/emqx/emqx/pull/9152)
|
||||||
* Allow clear retained/delayed data when client is banned.[#9139](https://github.com/emqx/emqx/pull/9139)
|
* Allow clear retained/delayed data when client is banned.[#9139](https://github.com/emqx/emqx/pull/9139)
|
||||||
|
* Update `gen_rpc` library to version 3.0 [#9187](https://github.com/emqx/emqx/pull/9187)
|
||||||
|
|
||||||
## Bug fixes
|
## Bug fixes
|
||||||
|
|
||||||
|
|
|
@ -973,6 +973,17 @@ until the RPC connection is considered lost."""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rpc_insecure_fallback {
|
||||||
|
desc {
|
||||||
|
en: """Enable compatibility with old RPC authentication."""
|
||||||
|
zh: """兼容旧的无鉴权模式"""
|
||||||
|
}
|
||||||
|
label {
|
||||||
|
en: "RPC insecure fallback"
|
||||||
|
zh: "向后兼容旧的无鉴权模式"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
log_file_handlers {
|
log_file_handlers {
|
||||||
desc {
|
desc {
|
||||||
en: """File-based log handlers."""
|
en: """File-based log handlers."""
|
||||||
|
|
|
@ -814,6 +814,15 @@ fields("rpc") ->
|
||||||
default => "1MB",
|
default => "1MB",
|
||||||
desc => ?DESC(rpc_socket_buffer)
|
desc => ?DESC(rpc_socket_buffer)
|
||||||
}
|
}
|
||||||
|
)},
|
||||||
|
{"insecure_fallback",
|
||||||
|
sc(
|
||||||
|
boolean(),
|
||||||
|
#{
|
||||||
|
mapping => "gen_rpc.insecure_auth_fallback_allowed",
|
||||||
|
default => true,
|
||||||
|
desc => ?DESC(rpc_insecure_fallback)
|
||||||
|
}
|
||||||
)}
|
)}
|
||||||
];
|
];
|
||||||
fields("log") ->
|
fields("log") ->
|
||||||
|
|
Loading…
Reference in New Issue