dauer commented on issue #15191:
URL: https://github.com/apache/grails-core/issues/15191#issuecomment-3481044008
I think I ran into the same issue, had to use arg# instead of parameter name:
```
- @Cacheable(cacheNames = ES_CACHE_NAME, key = "{#request.myField,
#request.SsomeOtherField}")
+ @Cacheable(cacheNames = ES_CACHE_NAME, key = "{#a0.myField,
#a0.someOtherField}")
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]