Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -342,3 +342,4 @@ workload: tools/bin/workload

generate-next-gen-grafana:
./scripts/generate-next-gen-metrics.sh

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

There's a critical issue in a script related to the code in this hunk. The generate-next-gen-grafana target calls scripts/generate-next-gen-metrics.sh. This script has a typo on line 65: $NEXT_gen_USER_FILE should be $NEXT_GEN_USER_FILE. Since the script runs with set -u, this will cause an 'unbound variable' error and make the make check command fail. I'm adding this comment here as the bug is not in a changed file, but it's critical to the stability of the checks.