ソースを参照

correctly dump error response

Bastien Sevajol 6 年 前
コミット
ea31eb8ac9
共有1 個のファイルを変更した2 個の追加1 個の削除を含む
  1. 2 1
      hapic/context.py

+ 2 - 1
hapic/context.py ファイルの表示

@@ -206,8 +206,9 @@ class BaseContext(ContextInterface):
206 206
                             exc,
207 207
                             include_traceback=self.is_debug(),
208 208
                         )
209
+                        dumped = error_builder.dump(error_body).data
209 210
                         return self.get_response(
210
-                            json.dumps(error_body),
211
+                            json.dumps(dumped),
211 212
                             handled_exception.http_code,
212 213
                         )
213 214
                 raise exc