force in memory storage to remove warning

we don't need persistent storage for now
This commit is contained in:
Glandos 2022-08-28 15:32:25 +02:00 committed by Alexis Metaireau
parent e7ab3c1a95
commit 63fba6be4c

View file

@ -24,6 +24,7 @@ from werkzeug.routing import RoutingException
limiter = limiter = Limiter( limiter = limiter = Limiter(
current_app, current_app,
key_func=get_remote_address, key_func=get_remote_address,
storage_uri="memory://",
) )