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 78065ae commit 6c97a68Copy full SHA for 6c97a68
crates/stackable-operator/src/commons/s3/crd.rs
@@ -107,7 +107,7 @@ impl Region {
107
pub const DEFAULT_REGION_NAME: &str = "us-east-1";
108
109
fn default_region_name() -> String {
110
- DEFAULT_REGION_NAME.to_string()
+ Self::DEFAULT_REGION_NAME.to_string()
111
}
112
113
/// Returns if the region sticks to the Stackable defaults.
@@ -116,7 +116,7 @@ impl Region {
116
/// This function can be used to determine if a warning or error should be raised to inform the
117
/// user of this situation.
118
pub fn is_default_config(&self) -> bool {
119
- self.name == DEFAULT_REGION_NAME
+ self.name == Self::DEFAULT_REGION_NAME
120
121
122
0 commit comments