Fix indentation while setting ES endpoint in Transactions

This commit is contained in:
Mark Veidemanis 2022-02-28 19:59:18 +00:00
parent c09bad9cc8
commit fde0936faf
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class Transactions(object):
self.lc_es_checks = LoopingCall(self.run_checks_in_thread) self.lc_es_checks = LoopingCall(self.run_checks_in_thread)
delay = int(settings.ES.RefreshSec) delay = int(settings.ES.RefreshSec)
self.lc_es_checks.start(delay) self.lc_es_checks.start(delay)
self.agora.es = self.es self.agora.es = self.es
# TODO: write tests then refactor, this is terribly complicated! # TODO: write tests then refactor, this is terribly complicated!
def transaction(self, data): def transaction(self, data):