We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dffd99 commit c056ae2Copy full SHA for c056ae2
fingr/server.py
@@ -237,6 +237,7 @@ async def start_server(args: argparse.Namespace) -> None:
237
# Connect to Redis
238
logger.debug("Connecting to Redis", host=args.redis_host, port=args.redis_port)
239
r = redis.Redis(host=args.redis_host, port=args.redis_port)
240
+ r.ping()
241
242
# Start Prometheus metrics server
243
metrics_port: int = 9090
0 commit comments