use RuntimeProvider in https (#1077)
* logger: missing https crate * https: use RuntimeProvider when making connections - [X] use RuntimeProvider when making TCP connections - [ ] use RuntimeProvider when making TLS upgrades - [ ] migrate tests * RuntimeProvider::Tcp: remove async read/write The TCP needs to Connect, the async readwriter will be in the transport of connect. Thus we don't need it to be a requirement on the top trait of RuntimeProvider * AsyncResolver: remove async from new() Related to overriding RuntimeProvider for #1074 Solves #1056 * cleanup tests * rebase master for 0.19.5 * fix windows tests Co-authored-by: Benjamin Fry <benjaminfry@me.com>
This commit is contained in:
@@ -68,7 +68,7 @@ fn test_ip_lookup_across_threads() {
|
||||
use testing::ip_lookup_across_threads_test;
|
||||
let io_loop = AsyncStdRuntime::new();
|
||||
let handle = io_loop.handle();
|
||||
ip_lookup_across_threads_test::<AsyncStdRuntime, AsyncStdRuntime>(io_loop, handle)
|
||||
ip_lookup_across_threads_test::<AsyncStdRuntime, AsyncStdRuntime>(handle)
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
Reference in New Issue
Block a user