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

Add with_tokio_runtime to HTTP stores #4040

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix nested runtimes
  • Loading branch information
tustvold committed Apr 9, 2023
commit cdffaef33097912b13f2dd92188204d618ef5dc7
4 changes: 2 additions & 2 deletions object_store/src/aws/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1297,8 +1297,8 @@ mod tests {
assert!(builder.is_err());
}

#[tokio::test]
async fn s3_test() {
#[test]
fn s3_test() {
let builder = maybe_skip_integration!();
let is_local = matches!(&builder.endpoint, Some(e) if e.starts_with("http://"));

Expand Down
4 changes: 2 additions & 2 deletions object_store/src/azure/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1137,8 +1137,8 @@ mod tests {
}};
}

#[tokio::test]
async fn azure_blob_test() {
#[test]
fn azure_blob_test() {
let builder = maybe_skip_integration!();
let test = |integration| async move {
put_get_delete_list_opts(&integration, false).await;
Expand Down