Log errors details of SwaggerValidationError
parent
b15535995f
commit
04d61b9d97
|
|
@ -2,6 +2,7 @@ from six import raise_from
|
||||||
|
|
||||||
import copy
|
import copy
|
||||||
import json
|
import json
|
||||||
|
import logging
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
|
|
||||||
from coreapi.compat import force_bytes
|
from coreapi.compat import force_bytes
|
||||||
|
|
@ -10,6 +11,7 @@ from ruamel import yaml
|
||||||
from . import openapi
|
from . import openapi
|
||||||
from .errors import SwaggerValidationError
|
from .errors import SwaggerValidationError
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
def _validate_flex(spec):
|
def _validate_flex(spec):
|
||||||
from flex.core import parse as validate_flex
|
from flex.core import parse as validate_flex
|
||||||
|
|
@ -70,7 +72,10 @@ class _OpenAPICodec(object):
|
||||||
errors[validator] = str(e)
|
errors[validator] = str(e)
|
||||||
|
|
||||||
if errors:
|
if errors:
|
||||||
raise SwaggerValidationError("spec validation failed", errors, spec, self)
|
exc = SwaggerValidationError("spec validation failed: {}".format(errors), errors, spec, self)
|
||||||
|
logger.warning(str(exc))
|
||||||
|
raise exc
|
||||||
|
|
||||||
return force_bytes(self._dump_dict(spec))
|
return force_bytes(self._dump_dict(spec))
|
||||||
|
|
||||||
def encode_error(self, err):
|
def encode_error(self, err):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue