Skip to content

Commit

Permalink
review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
adwk67 committed Oct 13, 2023
1 parent fe776e1 commit 07a9a0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/crd/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ impl GitSync {
// both "-git-config" and "--gitconfig" are recognized by gitsync
if key.to_lowercase().ends_with("-git-config") {
if value.to_lowercase().contains(GIT_SAFE_DIR) {
tracing::warn!("Config option {:?} contains a value for {GIT_SAFE_DIR} that duplicates
the constant value used internally!", value);
tracing::warn!("Config option {value:?} contains a value for {GIT_SAFE_DIR} that overrides
the value of this operator. Git-sync functionality will probably not work as expected!");
}
git_config = format!("{git_config},{value}");
} else {
Expand Down

0 comments on commit 07a9a0e

Please sign in to comment.