Skip to content

Commit

Permalink
chore: remove locaton in table not found error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
killme2008 committed Sep 13, 2023
1 parent f94337a commit 59cbcac
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/frontend/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,8 @@ pub enum Error {
#[snafu(display("Invalid system table definition: {err_msg}, at {location}"))]
InvalidSystemTableDef { err_msg: String, location: Location },

#[snafu(display("Table not found: '{}', at {location}", table_name))]
TableNotFound {
table_name: String,
location: Location,
},
#[snafu(display("Table not found: {}", table_name))]
TableNotFound { table_name: String },

#[snafu(display("Failed to join task, source: {}", source))]
JoinTask {
Expand Down

0 comments on commit 59cbcac

Please sign in to comment.