Skip to content

Commit c8cee1d

Browse files
committed
fix test
Signed-off-by: Jem Davies <[email protected]>
1 parent 761acf8 commit c8cee1d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

internal/stream/manager/api.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,9 @@ func (m *Type) HandleStreamsCRUD(w http.ResponseWriter, r *http.Request) {
138138
return
139139
}
140140

141-
if r.URL.Query().Get("chilled") != "true" || !m.chilled {
141+
ignoreLints := r.URL.Query().Get("chilled") == "true" || m.chilled
142+
143+
if !ignoreLints {
142144
var lints []string
143145
for k, n := range nodeSet {
144146
sLints, sLintWarns := m.lintStreamConfigNode(&n)

0 commit comments

Comments
 (0)