Skip to content

Commit

Permalink
starting from Grails5, accessing config by dot notation is prohibited…
Browse files Browse the repository at this point in the history
… (warning is logged about it)
  • Loading branch information
aulea committed Sep 12, 2022
1 parent f025e09 commit 868fa8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grails-app/services/grails/plugin/jms/JmsService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ class JmsService {
//-- Util ---------------

boolean isDisabled() {
grailsApplication.config.jms.disabled
grailsApplication.config.getProperty('jms.disabled', Boolean, true)
}

private convertMessageWithTemplate(template, Message message) {
Expand Down

0 comments on commit 868fa8e

Please sign in to comment.