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 e2d891a commit 9a43726Copy full SHA for 9a43726
spring-integration-jpa/src/main/java/org/springframework/integration/jpa/core/JpaExecutor.java
@@ -451,7 +451,7 @@ private Object executeOutboundJpaOperationOnPersistentMode(Message<?> message) {
451
this.jpaOperations.persist(payload, this.flushSize, this.clearOnFlush);
452
return payload;
453
case MERGE:
454
- return this.jpaOperations.merge(payload, this.flushSize, this.clearOnFlush);
+ return this.jpaOperations.merge(payload, this.flushSize, this.clearOnFlush); // NOSONAR
455
case DELETE:
456
this.jpaOperations.delete(payload);
457
if (this.flush) {
0 commit comments