Skip to content

Commit

Permalink
Merge pull request #320 from avimanyum/catch_exception
Browse files Browse the repository at this point in the history
Catching IOException when the image name is invalid
  • Loading branch information
avimanyum authored Feb 24, 2022
2 parents e18ae3e + 3acdd13 commit 57b8b66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void execute(final Namespace ns, final DockerfileGitHubUtil dockerfileGit
}
});
}
} catch (GHException | HttpException e){
} catch (GHException | IOException e){
log.error("Could not perform Github search for the image {}. Trying to proceed...", image);
processErrors(image, tag, e, imagesThatCouldNotBeProcessed);
}
Expand Down

0 comments on commit 57b8b66

Please sign in to comment.