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.
2 parents 57b8f92 + db1174e commit a2681d7Copy full SHA for a2681d7
redpanda/resources/topic/resource_topic.go
@@ -350,10 +350,7 @@ func filterDynamicConfig(configs []*dataplanev1alpha1.Topic_Configuration) []*da
350
var filtered []*dataplanev1alpha1.Topic_Configuration
351
for _, cfg := range configs {
352
if cfg != nil {
353
- // cleanup.policy always report the source as Dynamic even if we are
354
- // using the default. We can't manage this property for now.
355
- // See https://github.com/redpanda-data/redpanda/issues/2225
356
- if cfg.Source == dataplanev1alpha1.ConfigSource_CONFIG_SOURCE_DYNAMIC_TOPIC_CONFIG && cfg.Name != "cleanup.policy" {
+ if cfg.Source == dataplanev1alpha1.ConfigSource_CONFIG_SOURCE_DYNAMIC_TOPIC_CONFIG {
357
filtered = append(filtered, cfg)
358
}
359
0 commit comments