mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
How to fix?
This commit is contained in:
parent
5a2529f4af
commit
2861a2dc94
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ fn main() {
|
|||
.max_buf_size(MAX_DNS_QUESTION_LEN)
|
||||
.serve_incoming(listener.incoming(), move || Ok(doh.clone()));
|
||||
let fut = server.for_each(move |client_fut| {
|
||||
current_thread::spawn(client_fut.map(|_| {}).map_err(|_| {}));
|
||||
current_thread::spawn(client_fut.map(|_| {}).map_err(|_| {})); // "cannot call execute unless the thread is already in the context of a call to run" :(
|
||||
Ok(())
|
||||
});
|
||||
current_thread::run(|_| fut).wait().unwrap();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue