Skip to content

Commit

Permalink
Merge pull request #193 from LvBay/bugfix/findHttpManager
Browse files Browse the repository at this point in the history
fix findHttpManager
  • Loading branch information
AlexStocks authored Jul 1, 2021
2 parents da732e8 + 2b90b3d commit 70e6fb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/pixiu/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func (l *ListenerService) findHttpManager() model.HttpConnectionManager {
for _, fc := range l.FilterChains {
for _, f := range fc.Filters {
if f.Name == constant.HTTPConnectManagerFilter {
return *f.Config.(*model.HttpConnectionManager)
return f.Config.(model.HttpConnectionManager)
}
}
}
Expand Down
1 change: 1 addition & 0 deletions samples/plugins/go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github.com/dubbogo/dubbo-go-pixiu-filter v0.1.3/go.mod h1:d6SDK5BHl/QCvg84BN+g6LZS9QzVqnI2+yw0NBu0uac=

0 comments on commit 70e6fb7

Please sign in to comment.