Skip to content

Commit

Permalink
Make update wait time 30 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
var77 committed Jan 30, 2024
1 parent eb81d59 commit 433c9b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lantern_daemon/tests/daemon_test_with_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@ async fn test_embedding_generation_runtime(
let cnt: i64 = client_data.get::<usize, i64>(0);

if cnt != 0 {
if check_cnt >= 20 {
eprintln!("Force exit after 20 seconds");
if check_cnt >= 30 {
eprintln!("Force exit after 30 seconds");
break;
}
check_cnt += 1;
Expand Down

0 comments on commit 433c9b5

Please sign in to comment.