fix: Fix error where GH pre-load crashes app if not data found
1 unresolved thread
Resolves #24 (closed)
Merge request reports
Activity
Filter activity
requested review from @malowe
159 159 160 160 return om.readerFor(CveProjectData.class).readValue(githubApi.getCveDetails(params)); 161 161 } catch (Exception e) { 162 throw new RuntimeException(String.format("Could not fetch CVE %s from GitHub", key), e); 162 // Catch and log so as to not block the pre-load if GH has issues 163 LOGGER.error(String.format("Could not fetch CVE %s from GitHub", key), e); mentioned in commit fc613ef9
Please register or sign in to reply