Add 'no_memory' support for memory flag

This commit is contained in:
Eesa Hamza
2023-04-14 01:50:13 +03:00
parent 8472bbd455
commit 6702a04f76

View File

@@ -3,7 +3,7 @@ from memory.no_memory import NoMemory
# List of supported memory backends
# Add a backend to this list if the import attempt is successful
supported_memory = ['local']
supported_memory = ['local', 'no_memory']
try:
from memory.redismem import RedisMemory