Skip to content
Snippets Groups Projects
Commit 763b4365 authored by xg.gao's avatar xg.gao
Browse files

fix bug

parent c1e9b842
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,9 @@ func (pfw *ProtocolFilterWrapper) Destroy() {
func buildInvokerChain(invoker protocol.Invoker, key string) protocol.Invoker {
filterName := invoker.GetUrl().GetParam(key, "")
if filterName == "" {
return invoker
}
filterNames := strings.Split(filterName, ",")
// The order of filters is from left to right, so loading from right to left
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment