We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c61fcb8 commit d73aa05Copy full SHA for d73aa05
sqlx-core/src/odbc/connection/worker.rs
@@ -59,9 +59,7 @@ impl ConnectionWorker {
59
60
thread::Builder::new()
61
.name("sqlx-odbc-conn".into())
62
- .spawn(move || {
63
- worker_thread_main(options, establish_tx);
64
- })?;
+ .spawn(move || worker_thread_main(options, establish_tx))?;
65
66
establish_rx.await.map_err(|_| Error::WorkerCrashed)?
67
}
0 commit comments