Skip to content

Commit d2db584

Browse files
committed
fix: setup.Defined when only ObjectStores or SecretStores are set
1 parent 37aa2e5 commit d2db584

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

pkg/manifest/setup.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,15 @@ func (s Setup) Defined() bool {
2424
if len(s.Loggers) > 0 {
2525
defined = true
2626
}
27+
if len(s.ObjectStores) > 0 {
28+
defined = true
29+
}
2730
if len(s.KVStores) > 0 {
2831
defined = true
2932
}
33+
if len(s.SecretStores) > 0 {
34+
defined = true
35+
}
3036

3137
return defined
3238
}

0 commit comments

Comments
 (0)