Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Bump opendal to fix async runtime hang #6816

Merged
merged 3 commits into from
Jul 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
351 changes: 187 additions & 164 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion common/catalog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ common-users = { path = "../users" }

async-trait = "0.1.56"
dyn-clone = "1.0.6"
opendal = { version = "0.11.2", features = ["retry"] }
opendal = { version = "0.11.3", features = ["retry"] }
parking_lot = "0.12.1"
time = "0.3.10"
2 changes: 1 addition & 1 deletion common/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ common-tracing = { path = "../tracing" }
async-trait = "0.1.56"
clap = { version = "3.2.5", features = ["derive", "env"] }
once_cell = "1.12.0"
opendal = { version = "0.11.2", features = ["retry", "compress"] }
opendal = { version = "0.11.3", features = ["retry", "compress"] }
semver = "1.0.10"
serde = { version = "1.0.137", features = ["derive"] }
serfig = "0.0.2"
Expand Down
2 changes: 1 addition & 1 deletion common/contexts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ test = false
common-base = { path = "../base" }

async-trait = "0.1.56"
opendal = { version = "0.11.2", features = ["retry"] }
opendal = { version = "0.11.3", features = ["retry"] }
time = "0.3.10"
2 changes: 1 addition & 1 deletion common/settings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ futures-util = "0.3.21"
itertools = "0.10.3"
num_cpus = "1.13.1"
once_cell = "1.12.0"
opendal = { version = "0.11.2", features = ["retry"] }
opendal = { version = "0.11.3", features = ["retry"] }
parking_lot = "0.12.1"
semver = "1.0.10"
serde = { version = "1.0.137", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion common/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ storage-hdfs = ["opendal/services-hdfs"]
[dependencies]
anyhow = "1.0.58"
globiter = "0.1.0"
opendal = { version = "0.11.2", features = ["retry", "services-http"] }
opendal = { version = "0.11.3", features = ["retry", "services-http"] }
percent-encoding = "2.1.0"
serde = { version = "1.0.137", features = ["derive"] }
2 changes: 1 addition & 1 deletion common/streams/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ serde_json = { version = "1.0.81", default-features = false, features = ["preser
tempfile = "3.3.0"

[dev-dependencies]
opendal = { version = "0.11.2", features = ["retry", "compress"] }
opendal = { version = "0.11.3", features = ["retry", "compress"] }
2 changes: 1 addition & 1 deletion query/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ num = "0.4.0"
num_cpus = "1.13.1"
octocrab = "0.16.0"
once_cell = "1.12.0"
opendal = { version = "0.11.2", features = ["retry", "compress"] }
opendal = { version = "0.11.3", features = ["retry", "compress"] }
opensrv-clickhouse = "0.1.0"
opensrv-mysql = "0.1.0"
openssl = { version = "0.10.40", features = ["vendored"] }
Expand Down