Skip to content

Commit

Permalink
Adds paths information in 3.4.x compatibility error
Browse files Browse the repository at this point in the history
  • Loading branch information
krollquink committed Oct 23, 2024
1 parent a8c9a93 commit 1007aa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/file/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,7 @@ func (b *stateBuilder) routes() {
}
for _, r := range allRoutes {
if utils.HasPathsWithRegex300AndAbove(r.Route) {
unsupportedRoutes = append(unsupportedRoutes, *r.Route.ID)
unsupportedRoutes = append(unsupportedRoutes, *r.Route.ID + " paths:" + *r.Route.Paths[0])
}
}
if len(unsupportedRoutes) > 0 {
Expand Down

0 comments on commit 1007aa9

Please sign in to comment.