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 11[package ]
22edition = " 2021"
33name = " hstreamdb"
4- version = " 0.1.0 "
4+ version = " 0.1.1 "
55
66license = " BSD-3-Clause"
77description = " Rust client library for HStreamDB"
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments