I have deployed a Django app on aws lambda and configured API gateway HTTP API. The action messages are not displayed when I perform actions like creating or deleting objects on Django admin.
The action messages are properly displayed when I integrate Rest API instead of HTTP API.
I already found keeping the Session storage in Django settings solves the problem, but I think it's a workaround instead of the solution.
MESSAGE_STORAGE = 'django.contrib.messages.storage.session.SessionStorage'