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 c2b6e44 commit cf8b245Copy full SHA for cf8b245
1 file changed
rust/operator-binary/src/env_vars.rs
@@ -286,11 +286,11 @@ pub fn build_airflow_statefulset_envs(
286
287
// contains absolute path to git-sync folder and log config.
288
fn construct_python_path(airflow: &v1alpha2::AirflowCluster) -> String {
289
- let mut python_path = format!("{LOG_CONFIG_DIR}");
+ let mut python_path = LOG_CONFIG_DIR.to_string();
290
let symlinks = airflow.get_gitsync_absolute_paths();
291
// append `:` only of there are git-sync entries.
292
if !symlinks.is_empty() {
293
- python_path.push_str(":");
+ python_path.push(':');
294
python_path.push_str(symlinks.join(":").as_str());
295
}
296
0 commit comments