Skip to content

Commit

Permalink
Merge pull request #819 from jglick/doValidateRepositoryUrlAndCredent…
Browse files Browse the repository at this point in the history
…ials

Handle various errors from `doValidateRepositoryUrlAndCredentials`
  • Loading branch information
dwnusbaum authored Oct 23, 2024
2 parents 98e3d8a + 1e6b2e1 commit 8378945
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2155,7 +2155,7 @@ public FormValidation doValidateRepositoryUrlAndCredentials(
} finally {
Connector.release(github);
}
} catch (IOException e) {
} catch (Exception e) {
return FormValidation.error(e, "Error validating repository information. " + sb.toString());
}
return FormValidation.ok(sb.toString());
Expand Down

0 comments on commit 8378945

Please sign in to comment.