Skip to content

Commit

Permalink
Add Unitialized error to query interface
Browse files Browse the repository at this point in the history
  • Loading branch information
tailhook committed Jul 4, 2018
1 parent f383d3f commit c5a1677
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions example-configs/wasm-with-query/src/bin/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ enum ErrorKind {
Deserialize,
#[allow(dead_code)]
Internal,
#[allow(dead_code)]
Uninitialized,
}

#[derive(Debug, Serialize)]
Expand Down
1 change: 1 addition & 0 deletions src/daemon/query/wasm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ enum ErrorKind {
Serialize,
Deserialize,
Internal,
Unitialized,
Other(String)
}

Expand Down

0 comments on commit c5a1677

Please sign in to comment.