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 Nov 15, 2024
1 parent 6ba2d1b commit d3348bc
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ sub is_loaded_completely {

sub access_booting_options {
my ($self) = @_;
YuiRestClient::Wait::wait_until(object => sub {
return $self->get_overview_content() =~ /Booting/; },
timeout => 1800,
interval => 10,
message => "Link 'Booting' is not loaded."
);
$self->{rct_overview}->activate_link('bootloader_stuff');
}

Expand Down

0 comments on commit d3348bc

Please sign in to comment.