Pārlūkot izejas kodu

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

Romain Rigaux 8 gadi atpakaļ
vecāks
revīzija
1facf07
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      desktop/libs/notebook/src/notebook/decorators.py

+ 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