0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-05-19 20:13:45 +02:00

Fix synmark (#8571)

This seems to have been broken since #6513.
This commit is contained in:
Richard van der Hoff 2020-10-16 21:45:31 +01:00 committed by GitHub
parent d6094176d1
commit 0afd83584b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/8571.misc Normal file
View file

@ -0,0 +1 @@
Fix `synmark` benchmark runner.

View file

@ -41,7 +41,7 @@ async def make_homeserver(reactor, config=None):
config_obj = HomeServerConfig()
config_obj.parse_config_dict(config, "", "")
hs = await setup_test_homeserver(
hs = setup_test_homeserver(
cleanup_tasks.append, config=config_obj, reactor=reactor, clock=clock
)
stor = hs.get_datastore()