Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style: use OpenAPI instead of Swagger
  • Loading branch information
fgreinacher committed Apr 7, 2022
commit c99665f1a20d5f664c7d049a3e0773c84e79feb1
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public Docket customImplementation(){
}
String authority = hostURI.getAuthority();
if (authority != null) {
// In Swagger host refers to host _and_ port, a.k.a. the URI authority
// In OpenAPI `host` refers to host _and_ port, a.k.a. the URI authority
docket.host(authority);
}
docket.pathMapping(hostURI.getPath());
Expand Down