We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13888fc commit 74338feCopy full SHA for 74338fe
agent-control/src/config_migrate/migration/converter.rs
@@ -146,8 +146,7 @@ fn retrieve_dir_mapping_values<F: FileReader>(
146
/// (just adding quotes to make it a string). If this pattern is not quoted, the resulting YAML
147
/// would evaluate to a nested mapping with a single key-null pair, which is not what we want.
148
///
149
-/// This is a regex-based approach that may not cover all edge cases, but works for
150
-/// the common scenarios we expect (small config strings).
+/// This uses a regex-based approach.
151
fn process_config_input(input: String) -> String {
152
env_var_syntax_regex()
153
.replace_all(&input, "${pre}'{{${2}}}'${post}")
0 commit comments