Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 63e5b3d

Browse files
committedJan 14, 2025
Change JDC timeout config in tests
1 parent 3c35cdd commit 63e5b3d

File tree

1 file changed

+1
-2
lines changed
  • roles/tests-integration/lib

1 file changed

+1
-2
lines changed
 

‎roles/tests-integration/lib/mod.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ pub async fn start_jdc(
115115
"mkDLTBBRxdBv998612qipDYoTK3YUrqLe8uWw7gu3iXbSrn2n".to_string(),
116116
)
117117
.unwrap();
118-
let cert_validity_sec = 3600;
119118
let coinbase_outputs = vec![CoinbaseOutput::new(
120119
"P2WPKH".to_string(),
121120
"036adc3bdf21e6f9a0f0fb0066bf517e5b7909ed1563d6958a10993849a7554075".to_string(),
@@ -151,7 +150,7 @@ pub async fn start_jdc(
151150
pool_config,
152151
tp_config,
153152
upstreams,
154-
std::time::Duration::from_secs(cert_validity_sec),
153+
std::time::Duration::from_secs(1),
155154
);
156155
let ret = jd_client::JobDeclaratorClient::new(jd_client_proxy);
157156
let ret_clone = ret.clone();

0 commit comments

Comments
 (0)
Please sign in to comment.