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 8acbac9 commit d27aab0Copy full SHA for d27aab0
bin/router/src/shared_state.rs
@@ -43,9 +43,9 @@ impl RouterSharedState {
43
#[derive(thiserror::Error, Debug)]
44
pub enum SharedStateError {
45
#[error("invalid headers config: {0}")]
46
- HeaderRuleCompileError(#[from] Box<HeaderRuleCompileError>),
+ HeaderRuleCompile(#[from] Box<HeaderRuleCompileError>),
47
#[error("invalid regex in CORS config: {0}")]
48
- CORSConfigError(#[from] Box<CORSConfigError>),
+ CORSConfig(#[from] Box<CORSConfigError>),
49
#[error("invalid override labels config: {0}")]
50
- OverrideLabelsCompileError(#[from] Box<OverrideLabelsCompileError>),
+ OverrideLabelsCompile(#[from] Box<OverrideLabelsCompileError>),
51
}
0 commit comments