Skip to content

Commit

Permalink
fix typo in error handling (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrevels authored Aug 9, 2016
1 parent 2741b59 commit 82f8eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function Base.run(server::Server, args...; kwargs...)
remotecall_fetch(run, node, job)
nodelog(server.config, node, "completed job: $(summary(job))")
catch err
err_str = string(error)
err_str = string(err)
message = "Something went wrong when running [your job]($(submission(job).url)): `$(err_str)`\n"
if typeof(err) <: NanosoldierError
if isempty(err.url)
Expand Down

0 comments on commit 82f8eef

Please sign in to comment.