Skip to content

Commit 6856453

Browse files
committed
release: v0.1.1
1 parent 1b52504 commit 6856453

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/hstreamdb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "hstreamdb"
4-
version = "0.1.0"
4+
version = "0.1.1"
55

66
license = "BSD-3-Clause"
77
description = "Rust client library for HStreamDB"

src/hstreamdb/src/utils.rs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -103,19 +103,11 @@ mod tests {
103103

104104
use super::partition_key_to_shard_id;
105105
use crate::client::Client;
106-
use crate::ChannelProviderSettings;
107106

108107
#[tokio::test(flavor = "multi_thread")]
109108
async fn test_partition_key_to_shard_id() {
110109
let addr = env::var("TEST_SERVER_ADDR").unwrap();
111-
let mut client = Client::new(
112-
addr,
113-
ChannelProviderSettings {
114-
concurrency_limit: None,
115-
},
116-
)
117-
.await
118-
.unwrap();
110+
let mut client = Client::new(addr).await.unwrap();
119111

120112
let stream_name = rand_alphanumeric(20);
121113

0 commit comments

Comments
 (0)