We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 761acf8 commit c8cee1dCopy full SHA for c8cee1d
internal/stream/manager/api.go
@@ -138,7 +138,9 @@ func (m *Type) HandleStreamsCRUD(w http.ResponseWriter, r *http.Request) {
138
return
139
}
140
141
- if r.URL.Query().Get("chilled") != "true" || !m.chilled {
+ ignoreLints := r.URL.Query().Get("chilled") == "true" || m.chilled
142
+
143
+ if !ignoreLints {
144
var lints []string
145
for k, n := range nodeSet {
146
sLints, sLintWarns := m.lintStreamConfigNode(&n)
0 commit comments