View | Details | Raw Unified | Return to bug 25305
Collapse All | Expand All

(-)a/ucs-4.0-0/management/univention-management-console-module-top/umc/js/top.js (-1 / +6 lines)
 Lines 66-73   define([ Link Here 
66
			dialog.confirm(msg, [{
66
			dialog.confirm(msg, [{
67
				label: _('OK'),
67
				label: _('OK'),
68
				callback: lang.hitch(this, function() {
68
				callback: lang.hitch(this, function() {
69
					this.umcpCommand('top/kill', params).then(lang.hitch(this, function() {
69
					this.standbyDuring(this.umcpCommand('top/kill', params)).then(lang.hitch(this, function() {
70
						this.addNotification(_('Signal (%s) sent successfully', signal));
70
						this.addNotification(_('Signal (%s) sent successfully', signal));
71
						this.reloadGrid();
71
					}));
72
					}));
72
				})
73
				})
73
			}, {
74
			}, {
 Lines 76-81   define([ Link Here 
76
			}]);
77
			}]);
77
		},
78
		},
78
79
80
		reloadGrid: function() {
81
			this._grid.filter(this._grid.query);
82
		},
83
79
		buildRendering: function() {
84
		buildRendering: function() {
80
			this.inherited(arguments);
85
			this.inherited(arguments);
81
86
(-)a/ucs-4.0-0/management/univention-management-console-module-top/umc/python/top/__init__.py (-1 / +1 lines)
 Lines 118-124   class Instance(umcm.Base): Link Here 
118
			success = True
118
			success = True
119
		else:
119
		else:
120
			request.status = MODULE_ERR
120
			request.status = MODULE_ERR
121
			failed = ', '.join(failed)
121
			failed = ', '.join(map(str, failed))
122
			message = _('No process found with PID %s') % (failed)
122
			message = _('No process found with PID %s') % (failed)
123
			success = False
123
			success = False
124
		self.finished(request.id, success, message=message)
124
		self.finished(request.id, success, message=message)

Return to bug 25305