Skip to content

Commit a311d20

Browse files
committed
fix(dashboard): linting
1 parent 0c54179 commit a311d20

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

observability-lib/grafana/dashboard.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ func (o *Observability) DeployToGrafana(options *DeployOptions) error {
123123
newDashboard, _, errPostDashboard = grafanaClient.PostDashboard(api.PostDashboardRequest{
124124
Dashboard: o.Dashboard,
125125
Overwrite: true,
126-
FolderID: int(folder.ID),
126+
//nolint:gosec // disable G115
127+
FolderID: int(folder.ID),
127128
})
128129
if errPostDashboard != nil {
129130
return errPostDashboard

0 commit comments

Comments
 (0)