Skip to content

Commit

Permalink
Remove not helpful log string that might get too large. (#887)
Browse files Browse the repository at this point in the history
  • Loading branch information
shuoyang2016 authored Mar 19, 2024
1 parent 840ad64 commit 32f485c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/go/configgenerator/routegen/proxy_backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func NewProxyBackendRouteGenFromOPConfig(serviceConfig *servicepb.Service, opts

httpPatterns, err := sortHttpPatterns(httpPatternsBySelector)
if err != nil {
return nil, fmt.Errorf("fail to sort http patterns (%+v), got err: %v", httpPatternsBySelector, err)
return nil, fmt.Errorf("fail to sort http patterns: %v", err)
}

backendClusterBySelector, err := ParseBackendClusterBySelectorFromOPConfig(serviceConfig, opts)
Expand Down

0 comments on commit 32f485c

Please sign in to comment.