Skip to content

Commit 0eacde6

Browse files
authored
Merge pull request #52 from aulea/remove_config_dot_notation_access
Remove config dot notation access
2 parents f025e09 + 15e2294 commit 0eacde6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grails-app/services/grails/plugin/jms/JmsService.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ class JmsService {
274274
//-- Util ---------------
275275

276276
boolean isDisabled() {
277-
grailsApplication.config.jms.disabled
277+
grailsApplication.config.getProperty('jms.disabled', Boolean, false)
278278
}
279279

280280
private convertMessageWithTemplate(template, Message message) {

0 commit comments

Comments
 (0)