Jonas Schalck
Jonas Schalck
I have the exact same issue. I can't find a pattern. The output of 140 Bytes is very curious, since apparently we all get the same result!
This is still a bug. It can easily be monkey patched like so: ``` class TwitchLogin(SocialLoginView): adapter_class = TwitchOAuth2Adapter callback_url = 'http://localhost:8080/accounts/twitch/' client_class = OAuth2Client def get(self, request, *args, **kwargs):...
https://docs.celeryq.dev/en/stable/userguide/periodic-tasks.html This shows how to add a single periodic task. I'm looking for documentation on how to schedule a periodic group.
That is already what I'm doing. However, after the `group_result = group_task.apply_async()` line, I have a `group_result.get(disable_sync_subtasks=False)` because `disable_sync_subtasks` is necessary here. What happens if I do not await for...
> I'm experiencing the same issue, were you able to resolve it? So far i'm stuck with silencing the logs.
Well in that case we should not try to get invalid variables in DEBUG. I don't think logging a bunch of exceptions simply because DEBUG is set to true is...