Jonas Krüger Svensson
Jonas Krüger Svensson
Awesome 😊 I think, in general, the test suite for this package is a bit too repetitive. Right now the `b2c` folder and `multi-tenant` folder is more or less the...
No rush, thank you so much for contributing 😊
No rush!😊
Please read the [troubleshooting](https://django-auth-adfs.readthedocs.io/en/latest/troubleshooting.html) guide. Also list your Azure settings (change parts of e.g. tenant/clientID to `***`, do not post your client secret), your Django settings, a decoded token etc....
Closing for inactivity
This is documented through #279 😊
Closed by #391
This is closed by #345.
You can always pass the correlation ID into the job manually. worker: ```py from asgi_correlation_id.context import correlation_id async def job(cid: uuid4): correlation_id.set(cid) # business logic .. ``` FastAPI: ```py from...
For cron jobs you could also do this: ```py async def set_correlation_id(ctx: 'Ctx') -> None: correlation_id.set(uuid4().hex) class WorkerSettings: on_job_start = set_correlation_id ```