Skip to content

Commit

Permalink
Debugging enterprise test
Browse files Browse the repository at this point in the history
  • Loading branch information
safaci2000 committed Sep 3, 2024
1 parent aeee7eb commit 7d227f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
test:
env:
GRAFANA_INTEGRATION: 1
ENTERPRISE_LICENSE: $ENTERPRISE_LICENSE

runs-on: ubuntu-latest
steps:
Expand Down
5 changes: 4 additions & 1 deletion internal/service/connection_permissions.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ func (s *DashNGoImpl) ListConnectionPermissions(filter filters.Filter) []types.C

permission, err := s.getConnectionPermission(connection.UID)
if err != nil {
slog.Error("unable to retrieve connection permissions for ID", "id", connection.ID)
slog.Error("unable to retrieve connection permissions for ID", "id",
slog.Any("uid", connection.UID),
slog.Any("connection_name", connection.Name),
)
continue
}
entry := types.ConnectionPermissionItem{
Expand Down

0 comments on commit 7d227f8

Please sign in to comment.