summaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorChetanya Kandhari <chetanya.kandhari@joshtechnologygroup.com>2018-09-05 17:56:03 +0530
committerJoram Wilander <jwawilander@gmail.com>2018-09-05 08:26:03 -0400
commit291000703320cc53c3bdecd2553fa4a3021d7234 (patch)
tree6d23ea07e53998ddc7dcb5694517430a947b31e6 /plugin
parent54cb151d88cfa4d5c34ddabb5f9a6e75dfb5c555 (diff)
downloadchat-291000703320cc53c3bdecd2553fa4a3021d7234.tar.gz
chat-291000703320cc53c3bdecd2553fa4a3021d7234.tar.bz2
chat-291000703320cc53c3bdecd2553fa4a3021d7234.zip
Fix typo (#9347)
Diffstat (limited to 'plugin')
-rw-r--r--plugin/client_rpc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/client_rpc.go b/plugin/client_rpc.go
index 986c2b50f..d8547f352 100644
--- a/plugin/client_rpc.go
+++ b/plugin/client_rpc.go
@@ -265,7 +265,7 @@ func (g *hooksRPCClient) ServeHTTP(c *Context, w http.ResponseWriter, r *http.Re
go func() {
bodyConnection, err := g.muxBroker.Accept(requestBodyStreamId)
if err != nil {
- g.log.Error("Plugin failed to ServeHTTP, muxBroker couldn't Accept request body connecion", mlog.Err(err))
+ g.log.Error("Plugin failed to ServeHTTP, muxBroker couldn't Accept request body connection", mlog.Err(err))
http.Error(w, "500 internal server error", http.StatusInternalServerError)
return
}