mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
fix: replace redis init with generic ConfigLoader
StrictRedis() replaced by ConfigLoader.get_redis_conn()
This commit is contained in:
parent
22693dca1c
commit
abbde8a46a
1 changed files with 3 additions and 6 deletions
|
@ -29,6 +29,7 @@ from lib import Decoded
|
|||
from module.abstract_module import AbstractModule
|
||||
from Helper import Process
|
||||
from packages import Item
|
||||
import ConfigLoader
|
||||
|
||||
|
||||
class TimeoutException(Exception):
|
||||
|
@ -62,13 +63,9 @@ class Decoder(AbstractModule):
|
|||
|
||||
|
||||
def __init__(self):
|
||||
super(Decoder, self).__init__(logger_channel="script:decoder")
|
||||
super(Decoder, self).__init__()
|
||||
|
||||
serv_metadata = redis.StrictRedis(
|
||||
host=self.process.config.get("ARDB_Metadata", "host"),
|
||||
port=self.process.config.getint("ARDB_Metadata", "port"),
|
||||
db=self.process.config.getint("ARDB_Metadata", "db"),
|
||||
decode_responses=True)
|
||||
serv_metadata = ConfigLoader.ConfigLoader().get_redis_conn("ARDB_Metadata")
|
||||
|
||||
regex_binary = '[0-1]{40,}'
|
||||
#regex_hex = '(0[xX])?[A-Fa-f0-9]{40,}'
|
||||
|
|
Loading…
Reference in a new issue