Skip to content

Commit d22064e

Browse files
authored
[Exporter] Expand list of non-interactive clusters (#4023)
## Changes <!-- Summary of your changes that are easy to understand --> So we can avoid generation of not related cluster resources ## Tests <!-- How is this tested? Please see the checklist below and also describe any other relevant tests --> - [x] `make test` run locally - [ ] relevant change in `docs/` folder - [ ] covered with integration tests in `internal/acceptance` - [ ] relevant acceptance tests are passing - [ ] using Go SDK
1 parent fb178f9 commit d22064e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exporter/importables.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ var resourcesMap map[string]importable = map[string]importable{
327327
return err
328328
}
329329
lastActiveMs := ic.getLastActiveMs()
330-
nonInteractiveClusters := []string{"JOB", "PIPELINE_MAINTENANCE", "PIPELINE", "SQL"}
330+
nonInteractiveClusters := []string{"JOB", "MODELS", "PIPELINE_MAINTENANCE", "PIPELINE", "SQL"}
331331
for offset, c := range clusters {
332332
if slices.Contains(nonInteractiveClusters, string(c.ClusterSource)) {
333333
// TODO: Should we check cluster name as well?

0 commit comments

Comments
 (0)