You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Default value for grails.gorm.flushMode was changed from AUTO to COMMIT in GORM 6.1, but this was not fixed in the docs as well. Candidate fix for grails#514
In the documentation (https://gorm.grails.org/latest/hibernate/manual/index.html#_configuration_reference),
grails.gorm.flushMode
has default valueAUTO
but default value for flushMode was changed toCOMMIT
in GORM 6.1: https://gorm.grails.org/6.1.0/hibernate/manual/index.html#_flush_mode_now_commit_by_defaultThe GORM code does have default flushMode set to
COMMIT
, so the documentation is wrong:https://github.com/grails/gorm-hibernate5/blob/7.2.x/grails-datastore-gorm-hibernate5/src/main/groovy/org/grails/orm/hibernate/AbstractHibernateDatastore.java#L132
The text was updated successfully, but these errors were encountered: