Skip to content

Commit

Permalink
improve get spec logging (#4963)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhizor authored Jul 23, 2021
1 parent 1945bc6 commit fdc8ea1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public ConnectorSpecification run(JobGetSpecConfig config, Path jobRoot) throws
throw new WorkerException(String.format("Spec job subprocess finished with exit code %s", exitCode));
}
} catch (Exception e) {
throw new WorkerException(String.format("Error while getting spec from image %s: %s", config.getDockerImage(), e));
throw new WorkerException(String.format("Error while getting spec from image %s", config.getDockerImage()), e);
}

}
Expand Down

0 comments on commit fdc8ea1

Please sign in to comment.