Skip to content

Commit

Permalink
Fix sporadic fails in disable_boot_menu_timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
manfredi committed Dec 2, 2024
1 parent 5ec9485 commit 451e1de
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ sub is_loaded_completely {
my $result;
eval {
$result = YuiRestClient::Wait::wait_until(object => sub {
my $overview_content = $self->get_overview_content();
return ($overview_content =~ m/Boot Loader Type/);
return $self->get_overview_content() !~ /Analyzing|Evaluating/;
}, timeout => 60, message => "Overview content is not loaded.");
};
$result ? 1 : 0;
Expand Down

0 comments on commit 451e1de

Please sign in to comment.