Skip to content

Commit

Permalink
fix: clippy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
zyy17 committed May 14, 2024
1 parent ca987fc commit 1e95002
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/datanode/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ pub enum Error {
TomlFormat {
#[snafu(implicit)]
location: Location,
source: common_config::error::Error,
source: Box<common_config::error::Error>,
},
}

Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ pub enum Error {
TomlFormat {
#[snafu(implicit)]
location: Location,
source: common_config::error::Error,
source: Box<common_config::error::Error>,
},

#[snafu(display("Failed to get cache from cache registry: {}", name))]
Expand Down
2 changes: 1 addition & 1 deletion src/meta-srv/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ pub enum Error {
TomlFormat {
#[snafu(implicit)]
location: Location,
source: common_config::error::Error,
source: Box<common_config::error::Error>,
},
}

Expand Down

0 comments on commit 1e95002

Please sign in to comment.