Skip to content

Commit

Permalink
bump crates
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed Apr 3, 2024
1 parent 2963692 commit fa62aad
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crates/aws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ regex = { workspace = true }
uuid = { workspace = true, features = ["serde", "v4"] }
url = { workspace = true }
backoff = { version = "0.4", features = [ "tokio" ] }
hyper-tls = { version = "0.5", optional = true }
hyper-tls = { version = "0.6", optional = true }

[dev-dependencies]
deltalake-core = { path = "../core", features = ["datafusion"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ dashmap = "5"
errno = "0.3"
either = "1.8"
fix-hidden-lifetime-bug = "0.2"
hyper = { version = "0.14", optional = true }
hyper = { version = "1.2.0", optional = true }
indexmap = "2.2.1"
itertools = "0.12"
lazy_static = "1"
Expand Down Expand Up @@ -103,7 +103,7 @@ criterion = "0.5"
ctor = "0"
deltalake-test = { path = "../test", features = ["datafusion"] }
dotenvy = "0"
hyper = { version = "0.14", features = ["server"] }
hyper = { version = "1.2.0", features = ["server"] }
maplit = "1"
pretty_assertions = "1.2.1"
pretty_env_logger = "0.5.0"
Expand Down
5 changes: 3 additions & 2 deletions crates/core/src/data_catalog/client/retry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ impl RetryExt for reqwest::RequestBuilder {
let mut do_retry = false;
if let Some(source) = e.source() {
if let Some(e) = source.downcast_ref::<hyper::Error>() {
if e.is_connect() || e.is_closed() || e.is_incomplete_message() {
if e.is_closed() || e.is_incomplete_message() {
do_retry = true;
}
}
Expand Down Expand Up @@ -211,8 +211,9 @@ mod tests {
use super::super::mock_server::MockServer;
use super::RetryConfig;
use super::RetryExt;
use hyper::body::Body;
use hyper::header::LOCATION;
use hyper::{Body, Response};
use hyper::Response;
use reqwest::{Client, Method, StatusCode};
use std::time::Duration;

Expand Down

0 comments on commit fa62aad

Please sign in to comment.