Skip to content

Commit

Permalink
Bump crate version to 0.2.1
Browse files Browse the repository at this point in the history
Signed-off-by: dmolokanov <dmolokanov@users.noreply.github.com>
  • Loading branch information
dmolokanov committed Sep 9, 2021
1 parent 4d3bb06 commit 8aefdaf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions appinsights/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "appinsights"
version = "0.2.0"
version = "0.2.1"
authors = ["dmolokanov <dmolokanov@users.noreply.github.com>"]
edition = "2018"
description = "Application Insights SDK for Rust"
Expand Down Expand Up @@ -31,7 +31,7 @@ uuid = { version = "0.8", features = ["v4"], default-features = false }
reqwest = { version = "0.11", features = ["json"], default-features = false }
log = "0.4"
sm = "0.9"
tokio = { version = "1", features = ["macros", "rt"], default-features = false }
tokio = { version = "1", features = ["rt"], default-features = false }
paste = "1.0"
hostname = "0.3"
futures-util = { version = "0.3", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion appinsights/src/blocking/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ impl HyperTestServer {
}

fn next_request_timeout(&self) -> Result<String, RecvTimeoutError> {
self.request_recv.recv_timeout(Duration::from_millis(100))
self.request_recv.recv_timeout(Duration::from_millis(500))
}

fn wait_for_requests(&self, count: usize) -> Vec<String> {
Expand Down

0 comments on commit 8aefdaf

Please sign in to comment.