Skip to content

Commit

Permalink
fix panic
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsannm committed Jan 27, 2022
1 parent 617a6da commit 8ebf388
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion north_bridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ func (n *northBridge) acquireCtx(c Conn) *Context {
ctx, ok := n.ctxPool.Get().(*Context)
if !ok {
ctx = &Context{
kv: make(map[string]interface{}),
kv: make(map[string]interface{}),
hdr: make(map[string]string),
}
}

Expand Down

0 comments on commit 8ebf388

Please sign in to comment.