Skip to content

Commit

Permalink
Merge pull request #18 from HBPMedical/bug/galaxy_workflow
Browse files Browse the repository at this point in the history
Removing extra brackets.
  • Loading branch information
ThanKarab authored Nov 12, 2020
2 parents a3ec605 + c95b596 commit 27f996b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/eu/hbp/mip/controllers/ExperimentApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ public void updateWorkflowExperiment(Experiment experiment) {
experiment.setHasError(true);
experiment.setHasServerError(true);
}
experiment.setResult("[" + result + "]");
experiment.setResult(result);
experiment.setWorkflowStatus("completed");
resultFound = true;
}
Expand Down

0 comments on commit 27f996b

Please sign in to comment.