Эх сурвалжийг харах

HUE-5986 [editor] Only serialize expiration message if it is actually some text

Romain Rigaux 8 жил өмнө
parent
commit
1facf07

+ 1 - 1
desktop/libs/notebook/src/notebook/decorators.py

@@ -84,7 +84,7 @@ def api_error_handler(func):
       response['status'] = -2
     except QueryExpired, e:
       response['status'] = -3
-      if e.message:
+      if e.message and isinstance(e.message, basestring):
         response['message'] = e.message
     except AuthenticationRequired, e:
       response['status'] = 401