Skip to content

Commit

Permalink
Merge pull request #52 from aulea/remove_config_dot_notation_access
Browse files Browse the repository at this point in the history
Remove config dot notation access
  • Loading branch information
sbglasius authored Sep 16, 2022
2 parents f025e09 + 15e2294 commit 0eacde6
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, false)
}

private convertMessageWithTemplate(template, Message message) {
Expand Down

0 comments on commit 0eacde6

Please sign in to comment.