Patrick Cloke
Patrick Cloke
The current proof of concept for this is on the [`clokep/thread-read-receipts-poc`](https://github.com/matrix-org/synapse/tree/clokep/thread-read-receipts-poc) branch.
I think the last task here is to support stable identifiers, which would be needed for #13954.
@xangelix Looks like there's some linting and test issues!
I'm not sure of your use-case, but Celery includes a function to parse dates serialized by kombu: `celery.utils.iso8601.parse_iso8601`.
I should note that Pelican 4.5.1+ has the same behavior (I've tested on 4.5.4 and 4.6.0).
Ah, interesting. That does seem to be the issue. Setting `PLUGIN_PATHS = []` works! 🎉 (Of course it means I can't use any *other* plug-ins except for pelican_youtube.youtube` though.) Your...
First, thanks for kicking this off! Glad to see this is happening. Any thought on if there should be some focus on kombu first? There might not be much value...
This sounds like what the `periodic_task` decorator does: ```python from datetime import timedelta from celery.task import periodic_task @periodic_task(run_every=timedelta(minutes=5) def my_task(): ... ``` The definition says this is deprecated, but I'm...
> The tasks are not unregistered also when using `beat_schedule` setting, so it cannot be considered as the single source of truth; I'm not sure why you would need to...
> It would be nice to add a new test to ensure that public join rule (but NOT world readable rooms) show up in the list, along with knockable rooms....