maxdome / swagger-combine

Combines multiple Swagger schemas into one dereferenced schema.
MIT License
132 stars 36 forks source link

Name conflict in paths, when 2 yaml files have same path but different methods. #80

Closed dawinter closed 5 years ago

dawinter commented 5 years ago

Tried to combine swagger files but fails with "Name conflict in paths". The first swagger file contains the POST and PUT method definitions for a path and the second swagger file contains the GET method defintion for this path. Can you enable this?

Swagger file1 POST /sample PUT /sample

Swagger file2 GET /sample

dawinter commented 5 years ago

Seems there is a parameter for to --continueOnConflictingPaths .. Closing