This is an automated email from the ASF dual-hosted git repository.
laiyingchun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus.git
The following commit(s) were added to refs/heads/master by this push:
new 48f69d1f8 fix: Fix a typo in log when [network].enable_udp is disabled
(#2055)
48f69d1f8 is described below
commit 48f69d1f817bd05351ea13ef759d989042e96b30
Author: Yingchun Lai <[email protected]>
AuthorDate: Wed Jul 3 20:24:37 2024 +0800
fix: Fix a typo in log when [network].enable_udp is disabled (#2055)
---
src/runtime/task/task_spec.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/runtime/task/task_spec.cpp b/src/runtime/task/task_spec.cpp
index 044fbe5c1..f31b3598d 100644
--- a/src/runtime/task/task_spec.cpp
+++ b/src/runtime/task/task_spec.cpp
@@ -231,8 +231,8 @@ bool task_spec::init()
}
if (spec->rpc_call_channel == RPC_CHANNEL_UDP && !FLAGS_enable_udp) {
- LOG_ERROR("task rpc_call_channel RPC_CHANNEL_UCP need udp service,
make sure "
- "[network].enable_udp");
+ LOG_ERROR("task rpc_call_channel RPC_CHANNEL_UDP need udp service,
make sure "
+ "[network].enable_udp is enabled");
return false;
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]