- Jun 21, 2016
-
-
Mark Haines authored
Optionally start or stop workers in synctl.
-
Mark Haines authored
Optionally start or stop an individual worker by passing -w with the path to the worker config. Optionally start or stop every worker and the main synapse by passing -a with a path to a directory containing worker configs. The "-w" is intended to be used to bounce individual workers proceses. THe "-a" is intended for when you want to restart all the workers simultaneuously, for example when performing database upgrades.
-
- Jun 20, 2016
-
-
Erik Johnston authored
-
Erik Johnston authored
- Jun 17, 2016
-
-
Mark Haines authored
Remove registered_users from the distributor.
-
Mark Haines authored
-
Mark Haines authored
-
Mark Haines authored
The only place that was observed was to set the profile. I've made it so that the profile is set within store.register in the same transaction that creates the user. This required some slight changes to the registration code for upgrading guest users, since it previously relied on the distributor swallowing errors if the profile already existed.
-
Erik Johnston authored
Disable responding with canonical json for federation
-
Erik Johnston authored
-
Erik Johnston authored
Turn use_frozen_events off by default
-
Erik Johnston authored
Only re-sign our own events
-
Mark Haines authored
Fix ``KeyError: 'msgtype'``. Use ``.get``
-
Erik Johnston authored
-
Erik Johnston authored
-
Erik Johnston authored
-
Mark Haines authored
Fixes a key error where the mailer tried to get the ``msgtype`` of an event that was missing a ``msgtype``. ``` File "synapse/push/mailer.py", line 264, in get_notif_vars File "synapse/push/mailer.py", line 285, in get_message_vars File ".../frozendict/__init__.py", line 10, in __getitem__ return self.__dict[key] KeyError: 'msgtype' ```
-
Mark Haines authored
-
Mark Haines authored
Inline the synchrotron and pusher configs into the main config
-
- Jun 16, 2016
-
-
Mark Haines authored
-
Mark Haines authored
This means that the workers can override the event_cache_size directly without clobbering the value in the main synapse config.
-
Mark Haines authored
-
Mark Haines authored
-
Mark Haines authored
-
Mark Haines authored
-
Mark Haines authored
-
Erik Johnston authored
Fix TypeError in call to bcrypt.hashpw
-
Erik Johnston authored
Fix some `/preview_url` explosions
-
Salvatore LaMendola authored
- At the very least, this TypeError caused logins to fail on my own running instance of Synapse, and the simple (explicit) UTF-8 conversion resolved login errors for me. Signed-off-by:
Salvatore LaMendola <salvatore.lamendola@gmail.com>
-
- Jun 15, 2016
-
-
Erik Johnston authored
-
Erik Johnston authored
-
Erik Johnston authored
-
Mark Haines authored
Enable testing the synchrotron on jenkins
-
Erik Johnston authored
-
Erik Johnston authored
-
Erik Johnston authored
Linearize fetching of gaps on incoming events
-
Erik Johnston authored
This potentially stops the server from doing multiple requests for the same data.
-
Richard van der Hoff authored
Work around TLS bug in twisted
-