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

zychen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-brpc.git


The following commit(s) were added to refs/heads/master by this push:
     new 9deced9  minor, fix typo in Stream::OnReceived
     new 8d92f0d  Merge pull request #1639 from Aaaaaaron/stream_typo_fix
9deced9 is described below

commit 9deced9c22453b4f4a182f4c261bd00de8b259dc
Author: Jiatao Tao <[email protected]>
AuthorDate: Wed Dec 15 16:44:31 2021 +0800

    minor, fix typo in Stream::OnReceived
---
 src/brpc/stream.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/brpc/stream.cpp b/src/brpc/stream.cpp
index e48441e..67b3541 100644
--- a/src/brpc/stream.cpp
+++ b/src/brpc/stream.cpp
@@ -435,11 +435,11 @@ int Stream::OnReceived(const StreamFrameMeta& fm, 
butil::IOBuf *buf, Socket* soc
         }
         break;
     case FRAME_TYPE_RST:
-        RPC_VLOG << "stream=" << id() << " recevied rst frame";
+        RPC_VLOG << "stream=" << id() << " received rst frame";
         Close();
         break;
     case FRAME_TYPE_CLOSE:
-        RPC_VLOG << "stream=" << id() << " recevied close frame";
+        RPC_VLOG << "stream=" << id() << " received close frame";
         // TODO:: See the comments in Consume
         Close();
         break;

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

Reply via email to