You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The assert statement completely fails, this means that if someone was to define multiple plugins for apispec, then because this one fails any time view is not defined, there is no way forward.
Inside core.py inside the apispec, library, they handle any PluginMethodNotImplementedErrors, and move on. I would suggest raising that exception instead.
for plugin in self.plugins:
try:
ret = plugin.path_helper(
path=path, operations=operations, parameters=parameters, **kwargs
)
except PluginMethodNotImplementedError:
continue
The text was updated successfully, but these errors were encountered:
IIRC, this exception is made for methods that are not implemented in a
plugin. I wouldn't use that.
apispec is not really meant to handle multiple plugins having a
path_helper method. It uses the last value that is not None.
Therefore, I'm not sure it would be a good idea to do that.
Still, I guess the method could return None rather than crash.
Would you like to submit a PR?
I cannot use
spec.path
without providingview
.In
flask.py
:The assert statement completely fails, this means that if someone was to define multiple plugins for apispec, then because this one fails any time view is not defined, there is no way forward.
Inside
core.py
inside theapispec
, library, they handle anyPluginMethodNotImplementedErrors
, and move on. I would suggest raising that exception instead.The text was updated successfully, but these errors were encountered: