File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11
11
- Reduce CRD size from ` 472KB ` to ` 45KB ` by accepting arbitrary YAML input instead of the underlying schema for the following fields ([ #528 ] ):
12
12
- ` podOverrides `
13
13
- ` affinity `
14
- - Bumping stackable-operator from 0.73.0 to 0.74.0 ([ #530 ] )
15
14
16
15
[ #528 ] : https://github.com/stackabletech/superset-operator/pull/528
17
16
[ #530 ] : https://github.com/stackabletech/superset-operator/pull/530
Original file line number Diff line number Diff line change @@ -533,10 +533,11 @@ fn build_rolegroup_config_map(
533
533
534
534
let mut config_file = Vec :: new ( ) ;
535
535
536
+ // By removing the keys from `config_properties`, we avoid pasting the Python code into a Python variable as well
537
+ // (which would be bad)
536
538
if let Some ( header) = config_properties. remove ( CONFIG_OVERRIDE_FILE_HEADER_KEY ) {
537
539
writeln ! ( config_file, "{}" , header) . context ( WriteToConfigFileStringSnafu ) ?;
538
540
}
539
- // removing key from `config_properties` to avoid key value match. Append it later.
540
541
let temp_file_footer = config_properties. remove ( CONFIG_OVERRIDE_FILE_FOOTER_KEY ) ;
541
542
542
543
flask_app_config_writer:: write :: < SupersetConfigOptions , _ , _ > (
You can’t perform that action at this time.
0 commit comments