mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-22 21:59:59 +00:00
Silence compiler warnings
This commit is contained in:
committed by
Stas Kelvich
parent
cdb20bf2a2
commit
d6ba1e6b78
@@ -17,7 +17,7 @@ fn main() -> Result<(), Error> {
|
||||
walreceiver::thread_main();
|
||||
});
|
||||
|
||||
handler.join(); // never returns.
|
||||
let _unused = handler.join(); // never returns.
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ pub fn thread_main() {
|
||||
println!("Starting WAL receiver");
|
||||
|
||||
runtime.block_on( async {
|
||||
walreceiver_main().await;
|
||||
let _unused = walreceiver_main().await;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user