Skip to content

Commit

Permalink
Removing option of keeping jobs in case user wants to delete the run
Browse files Browse the repository at this point in the history
  • Loading branch information
nitinka committed Jan 2, 2014
1 parent c548bfe commit 09f2f8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public void deleteRun(@PathParam("businessUnit") String businessUnitName,
@QueryParam("deleteJobs") @DefaultValue("false")BooleanParam deleteJobs) throws IOException {
BusinessUnit businessUnit = BusinessUnit.businessUnitExistsOrException(businessUnitName);
businessUnit.teamExistOrException(teamName).runExistsOrException(run);
PerformanceRun.runExistsOrException(run).delete(deleteJobs.get());
PerformanceRun.runExistsOrException(run).delete();
}

}

0 comments on commit 09f2f8b

Please sign in to comment.