We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a31d371 commit 243282cCopy full SHA for 243282c
src/main/java/org/commonwl/view/workflow/WorkflowService.java
@@ -250,9 +250,13 @@ public List<WorkflowOverview> getWorkflowsFromDirectory(GitDetails gitInfo)
250
if (eIndex > 0) {
251
String extension = file.getName().substring(eIndex);
252
if (extension.equals("cwl")) {
253
- WorkflowOverview overview = cwlService.getWorkflowOverview(file);
254
- if (overview != null) {
255
- workflowsInDir.add(overview);
+ try {
+ WorkflowOverview overview = cwlService.getWorkflowOverview(file);
+ if (overview != null) {
256
+ workflowsInDir.add(overview);
257
+ }
258
+ } catch (IOException err) {
259
+ logger.error("Skipping file due to IOException: " + file.toString(), err);
260
}
261
262
0 commit comments