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
Are the options in 'grails.mongodb.options' still supported as described in this link. Whatever I set doesn't seem to have an effect?
I also noticed this for writeConcern in the documentation, even though it will fail (See runtime.groovy).
writeConcern = new com.mongodb.WriteConcern(0, 0, false)
Nothing I do in the 'options' set seems to have an effect. Is this still supported?
For Instance, I would expect timeout failures connection to the cloud with this but it succeeds:
Are the options in 'grails.mongodb.options' still supported as described in this link. Whatever I set doesn't seem to have an effect?
I also noticed this for writeConcern in the documentation, even though it will fail (See runtime.groovy).
writeConcern = new com.mongodb.WriteConcern(0, 0, false)
Nothing I do in the 'options' set seems to have an effect. Is this still supported?
For Instance, I would expect timeout failures connection to the cloud with this but it succeeds:
application.yml
grails:
mongodb:
options:
socketTimeout: 1
connectTimeout: 1
ssEnabled: false
application.groovy:
grails {
mongodb {
options {
socketTimeout = 1
connectTimeout = 1
ssEnabled = false
}
}
}
The text was updated successfully, but these errors were encountered: