From 3acdd135b9e718aeac0665a8eaa40906c27057eb Mon Sep 17 00:00:00 2001 From: Avimanyu Mukhopadhyay Date: Wed, 23 Feb 2022 15:20:37 -0800 Subject: [PATCH] Catching IOException --- .../salesforce/dockerfileimageupdate/subcommands/impl/All.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile-image-update/src/main/java/com/salesforce/dockerfileimageupdate/subcommands/impl/All.java b/dockerfile-image-update/src/main/java/com/salesforce/dockerfileimageupdate/subcommands/impl/All.java index 76cac509..fbdff907 100644 --- a/dockerfile-image-update/src/main/java/com/salesforce/dockerfileimageupdate/subcommands/impl/All.java +++ b/dockerfile-image-update/src/main/java/com/salesforce/dockerfileimageupdate/subcommands/impl/All.java @@ -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); }