Skip to content

Instantly share code, notes, and snippets.

@dertin
Last active February 19, 2025 17:33
Show Gist options
  • Save dertin/d5e6b031cb86fbe71c6d2272c764dedd to your computer and use it in GitHub Desktop.
Save dertin/d5e6b031cb86fbe71c6d2272c764dedd to your computer and use it in GitHub Desktop.
Efficient Connection Pooling in ODBC-MSSQL (odbc-api) - unixODBC 2.3.12pre
[ODBC Driver 18 for SQL Server]
Description=Microsoft ODBC Driver 18 for SQL Server
Driver=/opt/microsoft/msodbcsql18/lib64/libmsodbcsql-18.2.so.2.1
UsageCount=1
Pooling = Yes
CPTimeout = 180
PoolMaxSize = 15
This file has been truncated, but you can view the full file.
running 1 test
test test_odbc_pool_mssql ... FAILED
failures:
---- test_odbc_pool_mssql stdout ----
Environment for MSSQL pool
Connection MSSQL pool
Connection MSSQL pool
Connection MSSQL pool
~~ I DELETED THE REPEATED MESSAGE ~~
Connection MSSQL pool
Connection MSSQL pool
Connection MSSQL pool
Connection MSSQL pool
Connection MSSQL pool
Connection MSSQL pool
~~ AFTER A FEW SECONDS WITHIN AN ITERATION A CONNECTION FAILS ~~
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:65:5
3: 0x558ede0b06ba - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::ha1c5390454d74f71
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:44:22
4: 0x558ede0d44bf - core::fmt::write::h9ffde816c577717b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/fmt/mod.rs:1254:17
5: 0x558ede0ad785 - std::io::Write::write_fmt::he46c30c8efa4339b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/io/mod.rs:1698:15
6: 0x558ede0b0485 - std::sys_common::backtrace::_print::h184198273ed08d59
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:47:5
7: 0x558ede0b0485 - std::sys_common::backtrace::print::h1b4d8e7add699453
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:34:9
8: 0x558ede0b213e - std::panicking::default_hook::{{closure}}::h393bcea75423915a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:269:22
9: 0x558ede0b1e71 - std::panicking::default_hook::h48c64f31d8b3fd03
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:285:9
10: 0x558eddfb625b - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h04e5a570f98d94a5
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
11: 0x558eddfb625b - test::test_main::{{closure}}::h35282677eae04491
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/test/src/lib.rs:134:21
12: 0x558ede0b2824 - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb9b860f5a1175bda
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1987:9
13: 0x558ede0b2824 - std::panicking::rust_panic_with_hook::hafdc493a79370062
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:695:13
14: 0x558ede0b2599 - std::panicking::begin_panic_handler::{{closure}}::h0a64bc82e36bedc7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:582:13
15: 0x558ede0b0b26 - std::sys_common::backtrace::__rust_end_short_backtrace::hc203444fb7416a16
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:150:18
16: 0x558ede0b22f2 - rust_begin_unwind
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5
17: 0x558eddf74c23 - core::panicking::panic_fmt::h0f6ef0178afce4f2
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14
18: 0x558eddf75163 - core::result::unwrap_failed::h8090202169109f9c
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1687:5
19: 0x558eddf7b4c1 - core::result::Result<T,E>::unwrap::h1f958871f3428300
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/result.rs:1089:23
20: 0x558eddf7a3c8 - rust_pooldb::connection_pooling_mssql::h0160e9b87aa87273
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:55:16
21: 0x558eddf7995c - rust_pooldb::test_odbc_pool_mssql::{{closure}}::{{closure}}::ha9602511bdb4468e
at /home/dertin/workspace/hugint/sandbox/rust-pooldb/src/main.rs:93:40
22: 0x558eddf82c79 - std::sys_common::backtrace::__rust_begin_short_backtrace::h18f1069a6b14150d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:134:18
23: 0x558eddf76426 - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h8d20b8e8b474afaa
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:526:17
24: 0x558eddf772f9 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h663f4ff5f50936bc
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panic/unwind_safe.rs:271:9
25: 0x558eddf81d61 - std::panicking::try::do_call::h21f665f9533e1fff
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:485:40
26: 0x558eddf81e1b - __rust_try
27: 0x558eddf81cf6 - std::panicking::try::h6920b646ca48ab57
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:449:19
28: 0x558eddf7a896 - std::panic::catch_unwind::h76a961ae1136f48a
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panic.rs:140:14
29: 0x558eddf7625b - std::thread::Builder::spawn_unchecked_::{{closure}}::h16f21ae24beae318
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/thread/mod.rs:525:30
30: 0x558eddf7efde - core::ops::function::FnOnce::call_once{{vtable.shim}}::h14f46bf6ce8e558f
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/ops/function.rs:250:5
31: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::ha1f2224656a778fb
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
32: 0x558ede0b6df5 - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::haa29ed9703f354b7
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/alloc/src/boxed.rs:1973:9
33: 0x558ede0b6df5 - std::sys::unix::thread::Thread::new::thread_start::h33b6dae3e3692197
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys/unix/thread.rs:108:17
34: 0x7fce4c894b43 - start_thread
at ./nptl/./nptl/pthread_create.c:442:8
35: 0x7fce4c926a00 - clone3
at ./misc/../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
36: 0x0 - <unknown>
thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Diagnostics { record: State: HYT00, Native error: 0, Message: [Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired, function: "SQLDriverConnect" }', src/main.rs:57:10
stack backtrace:
0: 0x558ede0b06ba - std::backtrace_rs::backtrace::libunwind::trace::h9a6b80bbf328ba5d
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
1: 0x558ede0b06ba - std::backtrace_rs::backtrace::trace_unsynchronized::hd162ec543a11886b
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
2: 0x558ede0b06ba - std::sys_common::backtrace::_print_fmt::h78a5099be12f51a6
at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/sys_common/backtrace.rs:6
View raw

(Sorry about that, but we can’t show files that are this big right now.)

@abernardo88
Copy link

Hello I'm trying to implement the same logic, can you please share the cargo file? Thanks!

@dertin
Copy link
Author

dertin commented Jul 11, 2023

Hello @abernardo88, yes I'll add it soon. However it's not finished yet, leave some questions in the comments of the code that should be resolved before it can be used.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment