From 372adc4c3093d2b7d3d577ca80d94dd6d92a745c Mon Sep 17 00:00:00 2001 From: simon987 Date: Wed, 5 Aug 2020 21:51:02 -0400 Subject: [PATCH] update redis hostname --- api/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/app.py b/api/app.py index 47b98a5..d9890cc 100755 --- a/api/app.py +++ b/api/app.py @@ -14,7 +14,7 @@ from fastapi.params import Form from starlette.responses import Response app = FastAPI() -rdb = redis.Redis() +rdb = redis.Redis(host="redis") @app.get("/")