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 d3bd713 commit 5da95d7Copy full SHA for 5da95d7
crates/stackable-operator/src/utils/cluster_domain.rs
@@ -119,7 +119,9 @@ where
119
.min_by_key(|item| item.len())
120
.context(AmbiguousDomainEntriesSnafu)?;
121
122
- // NOTE (@Techassi): This is really sad and bothers me more than I would like to admit
+ // NOTE (@Techassi): This is really sad and bothers me more than I would like to admit. This
123
+ // clone could be removed by using the code directly in the calling function. But that would
124
+ // remove the possibility to easily test the parsing.
125
Ok(shortest_entry.to_owned())
126
}
127
0 commit comments