Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
rhbz1154555 - Fix process manager screen issue.
Browse files Browse the repository at this point in the history
The problem arises when there is a process running and the process manager screen is loaded. With the old async task implementation, the process manager expected a task name. This field is no longer present in the async task handles. For the time being, the process will present a string representation of the task handle. This should be changed in future revisions.
  • Loading branch information
Carlos A. Munoz committed Oct 23, 2014
1 parent f604b92 commit c7a4089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zanata-war/src/main/webapp/admin/processmanager.xhtml
Expand Up @@ -38,7 +38,7 @@
<rich:column>
<f:facet
name="header">#{msgs['jsf.processmanager.Type']}</f:facet>
#{handle.getTaskName()}
#{handle.toString()}
</rich:column>
<rich:column>
<f:facet name="header">#{msgs['jsf.Status']}</f:facet>
Expand Down

0 comments on commit c7a4089

Please sign in to comment.