##// END OF EJS Templates
exceptions: skip extracting exception by deprecated .message attribute
super-admin -
r5104:02a62824 default
parent child Browse files
Show More
@@ -137,7 +137,7 b' def exception_view(exc, request):'
137 137 rpc_id = getattr(request, 'rpc_id', None)
138 138
139 139 if isinstance(exc, JSONRPCError):
140 fault_message = safe_str(exc.message)
140 fault_message = safe_str(exc)
141 141 log.debug('json-rpc error rpc_id:%s "%s"', rpc_id, fault_message)
142 142 elif isinstance(exc, JSONRPCValidationError):
143 143 colander_exc = exc.colander_exception
@@ -272,7 +272,7 b' def cleanup_sessions(request, apiuser, o'
272 272 older_than_seconds=older_than_seconds)
273 273 return {'sessions_removed': cleaned, 'backend': backend}
274 274 except user_sessions.CleanupCommand as msg:
275 return {'cleanup_command': msg.message, 'backend': backend}
275 return {'cleanup_command': str(msg), 'backend': backend}
276 276 except Exception as e:
277 277 log.exception('Failed session cleanup')
278 278 raise JSONRPCError(
@@ -83,7 +83,7 b' class AdminSessionSettingsView(BaseAppVi'
83 83 older_than_seconds=older_than_seconds)
84 84 h.flash(_('Cleaned up old sessions'), category='success')
85 85 except user_sessions.CleanupCommand as msg:
86 h.flash(msg.message, category='warning')
86 h.flash(str(msg), category='warning')
87 87 except Exception as e:
88 88 log.exception('Failed session cleanup')
89 89 h.flash(_('Failed to cleanup up old sessions'), category='error')
General Comments 0
You need to be logged in to leave comments. Login now