Does it take for effect to take place in Production
So I made changes to the message for inapp actions in workflow. I have published changes to production but when I'm testing it locally its giving old message. Why's that?
Hi @BeardyWeird, I'm an AI assistant for Novu. While a team member reviews this question, I'll look through relevant sources and see if I can provide suggestions. Please tag @Ask Inkeep with any follow-up questions.
The issue you're experiencing could be related to caching, particularly if you're running Novu locally. When changes are made to templates or other configurations, these changes might not immediately reflect locally due to cached data. This is a known behavior discussed in a similar context, where flushing the cache resolved a similar issue for another user working with Novu locally 💬│supportIssue with template.
To resolve this, you could try clearing your cache. If you're using Redis for caching, you can use the following command in your terminal:
redis-cli FLUSHALL ASYNC
redis-cli FLUSHALL ASYNC
This forces a cache flush, which should then allow your local environment to reflect the latest changes you've made to the in-app message content. Keep in mind, this solution was derived from a discussion around a similar issue and might help in your case .