Skip to content

Commit 6ee2833

Browse files
committed
Changes report #1888.
1 parent 3c19d44 commit 6ee2833

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/customizers/ActuatorOperationCustomizer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public Operation customize(Operation operation, HandlerMethod handlerMethod) {
110110
while (matcher.find()) {
111111
operationId = matcher.group(1);
112112
}
113-
if (!summary.contains("$"))
113+
if (operation.getSummary() == null && !summary.contains("$"))
114114
operation.setSummary(summary);
115115
operation.setOperationId(operationId);
116116
}

0 commit comments

Comments
 (0)