Pass through _get_event_txn

This commit is contained in:
David Baker 2016-05-10 18:27:06 +02:00
parent 3b1930e8ec
commit d46b18a00f
2 changed files with 2 additions and 1 deletions

View file

@ -43,7 +43,7 @@ class ServerContextFactory(ssl.ContextFactory):
context.use_privatekey(config.tls_private_key)
context.load_tmp_dh(config.tls_dh_params_path)
context.set_cipher_list("!ADH:HIGH+kEDH:!AECDH:HIGH+kEECDH")
context.set_cipher_list("!ADH:HIGH+kEDH:!AECDH:HIGH+kEECDH:HIGH")
def getContext(self):
return self._context

View file

@ -104,6 +104,7 @@ class SlavedEventStore(BaseSlavedStore):
_invalidate_get_event_cache = DataStore._invalidate_get_event_cache.__func__
_parse_events_txn = DataStore._parse_events_txn.__func__
_get_events_txn = DataStore._get_events_txn.__func__
_get_event_txn = DataStore._get_event_txn.__func__
_enqueue_events = DataStore._enqueue_events.__func__
_do_fetch = DataStore._do_fetch.__func__
_fetch_events_txn = DataStore._fetch_events_txn.__func__