Skip to content

Commit

Permalink
Removing extra brackets.
Browse files Browse the repository at this point in the history
  • Loading branch information
ThanKarab committed Oct 29, 2020
1 parent 8b7fe96 commit c95b596
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 c95b596

Please sign in to comment.