Skip to content

Commit

Permalink
Add Lakehouse monitoring
Browse files Browse the repository at this point in the history
  • Loading branch information
lennartkats-db committed Jun 2, 2024
1 parent 4aa38b8 commit dc33b28
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bundle/config/mutator/run_as.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ func validateRunAs(b *bundle.Bundle) diag.Diagnostics {

// Monitors do not support run_as in the API.
if len(b.Config.Resources.QualityMonitors) > 0 {
return errUnsupportedResourceTypeForRunAs{
resourceType: "quality_monitors",
resourceLocation: b.Config.GetLocation("resources.quality_monitors"),
currentUser: b.Config.Workspace.CurrentUser.UserName,
runAsUser: identity,
return reportRunAsNotSupported(
"quality_monitors",
b.Config.GetLocation("resources.quality_monitors"),
b.Config.Workspace.CurrentUser.UserName,
identity,
}

Check failure on line 96 in bundle/config/mutator/run_as.go

View workflow job for this annotation

GitHub Actions / validate-bundle-schema

syntax error: unexpected }, expected expression

Check failure on line 96 in bundle/config/mutator/run_as.go

View workflow job for this annotation

GitHub Actions / fmt

expected operand, found '}'

Check failure on line 96 in bundle/config/mutator/run_as.go

View workflow job for this annotation

GitHub Actions / tests (macos-latest)

syntax error: unexpected }, expected expression

Check failure on line 96 in bundle/config/mutator/run_as.go

View workflow job for this annotation

GitHub Actions / tests (macos-latest)

syntax error: unexpected }, expected expression

Check failure on line 96 in bundle/config/mutator/run_as.go

View workflow job for this annotation

GitHub Actions / tests (ubuntu-latest)

syntax error: unexpected }, expected expression

Check failure on line 96 in bundle/config/mutator/run_as.go

View workflow job for this annotation

GitHub Actions / tests (ubuntu-latest)

syntax error: unexpected }, expected expression

Check failure on line 96 in bundle/config/mutator/run_as.go

View workflow job for this annotation

GitHub Actions / tests (windows-latest)

syntax error: unexpected }, expected expression

Check failure on line 96 in bundle/config/mutator/run_as.go

View workflow job for this annotation

GitHub Actions / tests (windows-latest)

syntax error: unexpected }, expected expression
}

Expand Down

0 comments on commit dc33b28

Please sign in to comment.