Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-monitor-widget@111500 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-01-27 16:45:44 +00:00 committed by Giancarlo Panichi
parent 0e650e12e0
commit 764fc876ad
1 changed files with 2 additions and 2 deletions

View File

@ -122,11 +122,11 @@ public class MonitorUpdater extends Timer implements MonitorDialogEventUIListene
String details = null;
if (result.getTask().getErrorCause() != null) {
th = result.getTask().getErrorCause();
reason = "Failed Client Library";
reason = "Failed Service";
details = result.getTask().getErrorCause().getLocalizedMessage();
} else {
th = new Throwable("Operation failed");
reason = "Failed Client Library";
reason = "Error on Service";
details = "Operation failed";
}