mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-14 04:25:29 -04:00
Fix client reader sharding tests (#7853)
* Fix client reader sharding tests * Newsfile * Fix typing * Update changelog.d/7853.misc Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com> * Move mocking of http_client to tests Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
This commit is contained in:
parent
b11450dedc
commit
f13061d515
7 changed files with 302 additions and 176 deletions
|
@ -20,6 +20,7 @@ import synapse.handlers.room
|
|||
import synapse.handlers.room_member
|
||||
import synapse.handlers.set_password
|
||||
import synapse.http.client
|
||||
import synapse.http.matrixfederationclient
|
||||
import synapse.notifier
|
||||
import synapse.push.pusherpool
|
||||
import synapse.replication.tcp.client
|
||||
|
@ -143,3 +144,7 @@ class HomeServer(object):
|
|||
pass
|
||||
def get_replication_streams(self) -> Dict[str, Stream]:
|
||||
pass
|
||||
def get_http_client(
|
||||
self,
|
||||
) -> synapse.http.matrixfederationclient.MatrixFederationHttpClient:
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue