Skip to content

Commit

Permalink
release: v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alissa-tung committed Oct 6, 2022
1 parent 1b52504 commit 6856453
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 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.

2 changes: 1 addition & 1 deletion src/hstreamdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "hstreamdb"
version = "0.1.0"
version = "0.1.1"

license = "BSD-3-Clause"
description = "Rust client library for HStreamDB"
Expand Down
10 changes: 1 addition & 9 deletions src/hstreamdb/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,19 +103,11 @@ mod tests {

use super::partition_key_to_shard_id;
use crate::client::Client;
use crate::ChannelProviderSettings;

#[tokio::test(flavor = "multi_thread")]
async fn test_partition_key_to_shard_id() {
let addr = env::var("TEST_SERVER_ADDR").unwrap();
let mut client = Client::new(
addr,
ChannelProviderSettings {
concurrency_limit: None,
},
)
.await
.unwrap();
let mut client = Client::new(addr).await.unwrap();

let stream_name = rand_alphanumeric(20);

Expand Down

0 comments on commit 6856453

Please sign in to comment.