You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/async/task.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -191,7 +191,7 @@ def run(*arguments)
191
191
rescue=>error
192
192
# I'm not completely happy with this overhead, but the alternative is to not log anything which makes debugging extremely difficult. Maybe we can introduce a debug wrapper which adds extra logging.
193
193
if@finished.nil?
194
-
Console::Event::Failure.for(error).emit("Task may have ended with unhandled exception.",severity: :warn)
194
+
Console::Event::Failure.for(error).emit(self,"Task may have ended with unhandled exception.",severity: :warn)
0 commit comments