chg: [redis] use default Redis port

This commit is contained in:
Alexandre Dulaunoy 2020-10-19 08:52:23 +02:00
parent 793ce3228f
commit afc06a3850
Signed by: adulau
GPG key ID: 09E2CD4944E6CBCD
2 changed files with 7 additions and 3 deletions

View file

@ -15,6 +15,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: zhulik/redis-action@1.1.0
with:
redis version: '5'
number of databases: 100
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2

View file

@ -39,14 +39,14 @@ if args.f is None:
# args.full_labels = True
if not args.binary:
redisdb = redis.Redis(host="localhost", port=6380, db=5, encoding='utf-8', decode_responses=True)
redisdb = redis.Redis(host="localhost", port=6379, db=5, encoding='utf-8', decode_responses=True)
else:
redisdb = redis.Redis(host="localhost", port=6380, db=5)
redisdb = redis.Redis(host="localhost", port=6379, db=5)
try:
redisdb.ping()
except:
print("Redis database on port 6380 is not running...", file=sys.stderr)
print("Redis database on port 6379 is not running...", file=sys.stderr)
sys.exit()
if not args.no_flushdb: