Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #918 from mturley/734-enhanced-error-reporting
Browse files Browse the repository at this point in the history
[#734] Add 'Status Detail' enhanced error message to info popover on a migration task

(cherry picked from commit 9db5954)

https://bugzilla.redhat.com/show_bug.cgi?id=1693747
  • Loading branch information
mzazrivec authored and simaishi committed Apr 5, 2019
1 parent d558275 commit acf1d6d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,14 @@ class PlanRequestDetailList extends React.Component {
<b>{__('Conversion Host')}: </b>
{conversionHosts[task.id] && conversionHosts[task.id].name}
</div>
<br />
<div>
<strong>{__('Status Detail')}: </strong>
{task.options.progress &&
task.options.progress.current_state &&
task.options.progress.states &&
task.options.progress.states[task.options.progress.current_state].message}
</div>
{task.log_available && (
<div>
<br />
Expand Down

0 comments on commit acf1d6d

Please sign in to comment.