瀏覽代碼

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

Romain Rigaux 8 年之前
父節點
當前提交
1facf07
共有 1 個文件被更改,包括 1 次插入1 次删除
  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