Skip to content

Commit

Permalink
Update updater.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thatITfox authored Jul 17, 2022
1 parent 91f705a commit ac31106
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
import time

# setup and connect to redis and the database
RedisDB = redis.StrictRedis(host="redis-14756.c15.us-east-1-4.ec2.cloud.redislabs.com",
port=14756,
RedisDB = redis.StrictRedis(host="host",
port=5555,
username="default",
password="mjM5mlHLpCnHNvWAqLNJVZxLwtJAzHxs",
password="pswd",
decode_responses=True
)
# crate a schema for the comic's data
Expand Down Expand Up @@ -110,4 +110,4 @@
else:
print(f'{Fore.BLACK}{Back.LIGHTWHITE_EX}{Style.BRIGHT}{link} is a guest comics{Style.RESET_ALL}')

RedisDB.lset("characters_db", 0, *characters_db)
RedisDB.lset("characters_db", 0, *characters_db)

0 comments on commit ac31106

Please sign in to comment.