Skip to content

Commit

Permalink
Merge pull request apache#193 from LvBay/bugfix/findHttpManager
Browse files Browse the repository at this point in the history
fix findHttpManager

Former-commit-id: 70e6fb7
  • Loading branch information
AlexStocks authored Jul 1, 2021
2 parents 253bfd4 + 387c0f3 commit 66934a8
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 66934a8

Please sign in to comment.