Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix NPE when picking host for transfer-image #850

Merged
merged 2 commits into from
May 21, 2023
Merged

Commits on May 20, 2023

  1. core: fix NPE when picking host for transfer-image

    When picking a host for transfer-image job, we filter hosts that
    are UP and then process the data they reported on storage domains
    without checking whether the host actually reported this data.
    It can happen that hosts are UP and still have not reported data
    on storage domains, in which case the data is null, resulting in
    an NPE in the transfer-image flow.
    
    This patch changes the predicate that is used to filter hosts for
    transfer-image, adding a null-check to avoid that NPE.
    
    Bug-Url: https://bugzilla.redhat.com/2203132
    Signed-off-by: Arik Hadas <ahadas@redhat.com>
    ahadas committed May 20, 2023
    Configuration menu
    Copy the full SHA
    f48cfb5 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2023

  1. build: disable ansible-lint

    The call to ansible-lint is commented out until we fix it
    Filed issue: oVirt#851
    
    Signed-off-by: Arik Hadas <ahadas@redhat.com>
    ahadas committed May 21, 2023
    Configuration menu
    Copy the full SHA
    6cc0623 View commit details
    Browse the repository at this point in the history