File tree Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
edition = " 2021"
3
3
name = " hstreamdb"
4
- version = " 0.1.0 "
4
+ version = " 0.1.1 "
5
5
6
6
license = " BSD-3-Clause"
7
7
description = " Rust client library for HStreamDB"
Original file line number Diff line number Diff line change @@ -103,19 +103,11 @@ mod tests {
103
103
104
104
use super :: partition_key_to_shard_id;
105
105
use crate :: client:: Client ;
106
- use crate :: ChannelProviderSettings ;
107
106
108
107
#[ tokio:: test( flavor = "multi_thread" ) ]
109
108
async fn test_partition_key_to_shard_id ( ) {
110
109
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 ( ) ;
119
111
120
112
let stream_name = rand_alphanumeric ( 20 ) ;
121
113
You can’t perform that action at this time.
0 commit comments