全部打印

This commit is contained in:
wuaho 2021-08-31 18:41:53 +08:00
parent fbe95ee0dc
commit 1b5e1ab32a

View File

@ -57,7 +57,9 @@ class Config:
REDIS_CONF = {
'address': ('192.168.0.161', 6379),
'password': 'd1Gh*zp5',
'db': 1
'db': 0,
'minsize': 16,
'maxsize': 16,
}
# appid 对应的签名
@ -68,6 +70,7 @@ class Config:
'e903ab24ad8f4bfca8a3ce7e122cd102': 'asfsdafasdsf',
'qXIPFypDlLqCuHdQ': 'asfsdafasdsf', # 山海
'KDmgdJYoRHLKRDvA': 'asfsdafasdsf', # 像素
'WGtekOwwekH2kCad': 'asfsdafasdsf' # 像素debug
}
# 映射数数 appID
@ -83,7 +86,8 @@ class Config:
'c3e0409ac18341149877b08f087db640': 'test2',
'e903ab24ad8f4bfca8a3ce7e122cd102': 'zhengba_test',
'qXIPFypDlLqCuHdQ': 'shanhai',
'KDmgdJYoRHLKRDvA': 'xiangsu'
'KDmgdJYoRHLKRDvA': 'xiangsu',
'WGtekOwwekH2kCad': 'xiangsu_debug' # 像素debug
}
KAFKA_CONF = {
@ -93,11 +97,11 @@ class Config:
class Debug(Config):
REDIS_CONF = {
'address': ('192.168.0.161', 6379),
'password': 'd1Gh*zp5',
'db': 0
}
pass
settings = Debug
class Produce(Config):
pass
settings = Produce