File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ fn upgrade_lsp_repl_sleeps() {
253
253
pty. expect ( "579" ) ;
254
254
} ) ;
255
255
256
- // the test server will sleep for 45 seconds, so ensure this is less
256
+ // the test server will sleep for 95 seconds, so ensure this is less
257
257
let elapsed_secs = start_instant. elapsed ( ) . as_secs ( ) ;
258
- assert ! ( elapsed_secs < 30 , "elapsed_secs: {}" , elapsed_secs) ;
258
+ assert ! ( elapsed_secs < 94 , "elapsed_secs: {}" , elapsed_secs) ;
259
259
}
Original file line number Diff line number Diff line change @@ -1274,7 +1274,7 @@ async fn main_server(
1274
1274
)
1275
1275
}
1276
1276
( & hyper:: Method :: GET , "/upgrade/sleep/release-latest.txt" ) => {
1277
- tokio:: time:: sleep ( Duration :: from_secs ( 45 ) ) . await ;
1277
+ tokio:: time:: sleep ( Duration :: from_secs ( 95 ) ) . await ;
1278
1278
return Ok (
1279
1279
Response :: builder ( )
1280
1280
. status ( StatusCode :: OK )
@@ -1283,7 +1283,7 @@ async fn main_server(
1283
1283
) ;
1284
1284
}
1285
1285
( & hyper:: Method :: GET , "/upgrade/sleep/canary-latest.txt" ) => {
1286
- tokio:: time:: sleep ( Duration :: from_secs ( 45 ) ) . await ;
1286
+ tokio:: time:: sleep ( Duration :: from_secs ( 95 ) ) . await ;
1287
1287
return Ok (
1288
1288
Response :: builder ( )
1289
1289
. status ( StatusCode :: OK )
You can’t perform that action at this time.
0 commit comments