Skip to content

Commit eb01a53

Browse files
committed
Switch to master branch of odf core
1 parent 7769b78 commit eb01a53

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ doctest = false
1313

1414
[dependencies]
1515
# Kamu
16-
internal-error = { git = "https://github.com/kamu-data/kamu-cli", branch = "chore/upgrade-datafusion", version = "0.255.0", default-features = false }
17-
odf = { package = "opendatafabric-metadata", git = "https://github.com/kamu-data/kamu-cli", branch = "chore/upgrade-datafusion", version = "0.255.0", default-features = false }
16+
internal-error = { git = "https://github.com/kamu-data/kamu-cli", branch = "master", version = "0.255.0", default-features = false }
17+
odf = { package = "opendatafabric-metadata", git = "https://github.com/kamu-data/kamu-cli", branch = "master", version = "0.255.0", default-features = false }
1818

1919
# Egine
2020
datafusion = { version = "51", default-features = false, features = [

src/grpc.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ impl EngineGRPCImpl {
5353
write!(message, ": {}", current_err).unwrap();
5454

5555
// Find inner-most backtrace
56-
if let Some(bt) = core::error::request_ref::<Backtrace>(current_err) {
57-
if bt.status() == BacktraceStatus::Captured {
58-
backtrace = Some(bt);
59-
}
56+
if let Some(bt) = core::error::request_ref::<Backtrace>(current_err)
57+
&& bt.status() == BacktraceStatus::Captured
58+
{
59+
backtrace = Some(bt);
6060
}
6161
}
6262

0 commit comments

Comments
 (0)