Actions
Bug #7258
closedPropagate backtraces in our orchestration code
Status:
Closed
Priority:
Normal
Assignee:
-
Category:
Orchestration
Target version:
-
Description
We don't propagate backtraces correctly which makes things more difficult. For instance /usr/share/foreman/app/models/concerns/orchestration/tftp.rb on the line 82
81 rescue => e 82 failure _("Failed to...") % { :template_kind => os.template_kind, :e => e } 83 end
It should look like
82 failure _("Failed to...") % { :template_kind => os.template_kind, :e => e }, e
Let's review rest of the orchestration code.
Updated by Anonymous over 9 years ago
- Status changed from New to Closed
Has been fixed as a part of http://projects.theforeman.org/issues/10713
Updated by Dominic Cleal over 9 years ago
- Is duplicate of Bug #10713: Stop truncating backtraces added
Actions