Skip to content

Commit 837f83f

Browse files
committed
MOAR OUTPUT
1 parent e94fe69 commit 837f83f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/vss-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ jobs:
4545
cd ldk-node
4646
export TEST_VSS_BASE_URL="http://localhost:8080/vss"
4747
RUSTFLAGS="--cfg vss_test" cargo test io::vss_store
48-
RUSTFLAGS="--cfg vss_test" cargo test --test integration_tests_vss -- --nocapture
48+
RUST_BACKTRACE=full RUSTFLAGS="--cfg vss_test" cargo test --test integration_tests_vss -- --nocapture

src/io/vss_store.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ impl KVStoreSync for VssStore {
132132
internal_runtime.block_on(async move {
133133
tokio::time::timeout(VSS_IO_TIMEOUT, fut).await.map_err(|_| {
134134
let msg = "VssStore::read timed out";
135+
eprintln!("{}", msg);
135136
Error::new(ErrorKind::Other, msg)
136137
})
137138
})?
@@ -171,6 +172,7 @@ impl KVStoreSync for VssStore {
171172
internal_runtime.block_on(async move {
172173
tokio::time::timeout(VSS_IO_TIMEOUT, fut).await.map_err(|_| {
173174
let msg = "VssStore::write timed out";
175+
eprintln!("{}", msg);
174176
Error::new(ErrorKind::Other, msg)
175177
})
176178
})?
@@ -209,6 +211,7 @@ impl KVStoreSync for VssStore {
209211
internal_runtime.block_on(async move {
210212
tokio::time::timeout(VSS_IO_TIMEOUT, fut).await.map_err(|_| {
211213
let msg = "VssStore::remove timed out";
214+
eprintln!("{}", msg);
212215
Error::new(ErrorKind::Other, msg)
213216
})
214217
})?
@@ -231,6 +234,7 @@ impl KVStoreSync for VssStore {
231234
internal_runtime.block_on(async move {
232235
tokio::time::timeout(VSS_IO_TIMEOUT, fut).await.map_err(|_| {
233236
let msg = "VssStore::list timed out";
237+
eprintln!("{}", msg);
234238
Error::new(ErrorKind::Other, msg)
235239
})
236240
})?

0 commit comments

Comments
 (0)