Skip to content

Commit

Permalink
fix ordering of subresources in project report
Browse files Browse the repository at this point in the history
It's not a problem in prod right now because all par.az are 'any',
but for test stability, this needs to be ordered.
  • Loading branch information
majewsky committed Oct 25, 2023
1 parent 8b5198b commit f77f3a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/reports/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var (
LEFT OUTER JOIN project_resources pr ON pr.service_id = ps.id {{AND pr.name = $resource_name}}
LEFT OUTER JOIN project_az_resources par ON par.resource_id = pr.id
WHERE %s
ORDER BY p.uuid
ORDER BY p.uuid, par.az
`)
)

Expand Down

0 comments on commit f77f3a4

Please sign in to comment.