We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71cf529 commit 26ea6f3Copy full SHA for 26ea6f3
springdoc-openapi-common/src/main/java/org/springdoc/api/AbstractOpenApiResource.java
@@ -301,8 +301,10 @@ protected synchronized OpenAPI getOpenApi() {
301
LOGGER.info("Init duration for springdoc-openapi is: {} ms",
302
Duration.between(start, Instant.now()).toMillis());
303
}
304
- else
+ else{
305
+ LOGGER.debug("Fetching openApi document from cache");
306
openApi = openAPIService.updateServers(openAPIService.getCachedOpenAPI());
307
+ }
308
return openApi;
309
310
0 commit comments