mirror of
https://git.wownero.com/lza_menace/wowstash.git
synced 2024-08-15 00:33:15 +00:00
add elasticsearch bypass
This commit is contained in:
parent
cede7269d0
commit
10298ced8f
2 changed files with 17 additions and 15 deletions
|
@ -37,6 +37,7 @@ DB_PASS = 'zzzzzzzzz'
|
||||||
|
|
||||||
# Development
|
# Development
|
||||||
TEMPLATES_AUTO_RELOAD = True
|
TEMPLATES_AUTO_RELOAD = True
|
||||||
|
ELASTICSEARCH_ENABLED = False
|
||||||
|
|
||||||
# Social
|
# Social
|
||||||
SOCIAL = {
|
SOCIAL = {
|
||||||
|
|
|
@ -4,6 +4,7 @@ from wowstash import config
|
||||||
|
|
||||||
|
|
||||||
def send_es(data):
|
def send_es(data):
|
||||||
|
if getattr(config, 'ELASTICSEARCH_ENABLED', False):
|
||||||
try:
|
try:
|
||||||
es = Elasticsearch(
|
es = Elasticsearch(
|
||||||
[getattr(config, 'ELASTICSEARCH_HOST', 'localhost')]
|
[getattr(config, 'ELASTICSEARCH_HOST', 'localhost')]
|
||||||
|
|
Loading…
Reference in a new issue