Skip to content

Commit

Permalink
remove some more debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
eschultink committed Nov 16, 2023
1 parent 016540e commit dc1b25b
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -729,11 +729,6 @@ private void runJob(RunJobTask task) {
Throwable caughtException = null;
try {
methodToExecute.setAccessible(true);
if (job.getPipelineRunner() == null) {
throw new RuntimeException("PipelineRunner is not set on " + job);
}
log.info("invoking method on " + job);
log.info("method: " + methodToExecute);
returnValue = (Value<?>) methodToExecute.invoke(job, params);
} catch (InvocationTargetException e) {
caughtException = e.getCause();
Expand Down

0 comments on commit dc1b25b

Please sign in to comment.