Avoid double getFlushMode call
This commit is contained in:
parent
24b9e3a0be
commit
d467dc2a05
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2014 the original author or authors.
|
* Copyright 2002-2016 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -480,7 +480,7 @@ public class HibernateTransactionManager extends AbstractPlatformTransactionMana
|
||||||
if (!definition.isReadOnly() && !txObject.isNewSession()) {
|
if (!definition.isReadOnly() && !txObject.isNewSession()) {
|
||||||
// We need AUTO or COMMIT for a non-read-only transaction.
|
// We need AUTO or COMMIT for a non-read-only transaction.
|
||||||
FlushMode flushMode = session.getFlushMode();
|
FlushMode flushMode = session.getFlushMode();
|
||||||
if (session.getFlushMode().equals(FlushMode.MANUAL)) {
|
if (FlushMode.MANUAL.equals(flushMode)) {
|
||||||
session.setFlushMode(FlushMode.AUTO);
|
session.setFlushMode(FlushMode.AUTO);
|
||||||
txObject.getSessionHolder().setPreviousFlushMode(flushMode);
|
txObject.getSessionHolder().setPreviousFlushMode(flushMode);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2015 the original author or authors.
|
* Copyright 2002-2016 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -477,7 +477,7 @@ public class HibernateTransactionManager extends AbstractPlatformTransactionMana
|
||||||
if (!definition.isReadOnly() && !txObject.isNewSession()) {
|
if (!definition.isReadOnly() && !txObject.isNewSession()) {
|
||||||
// We need AUTO or COMMIT for a non-read-only transaction.
|
// We need AUTO or COMMIT for a non-read-only transaction.
|
||||||
FlushMode flushMode = session.getFlushMode();
|
FlushMode flushMode = session.getFlushMode();
|
||||||
if (session.getFlushMode().equals(FlushMode.MANUAL)) {
|
if (FlushMode.MANUAL.equals(flushMode)) {
|
||||||
session.setFlushMode(FlushMode.AUTO);
|
session.setFlushMode(FlushMode.AUTO);
|
||||||
txObject.getSessionHolder().setPreviousFlushMode(flushMode);
|
txObject.getSessionHolder().setPreviousFlushMode(flushMode);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue