Maciej Gol

Results 15 comments of Maciej Gol

I believe the `tenant_schemas_celery.scheduler.TenantAwareScheduler` scheduler class does what you need. When you don't specify the `tenant_schemas` key, or set it to `None`, the task will be sent to all the...

Since you are adding the tasks dynamically to the DB, have you tried adding the `_schema_name: "" kwarg to the task?

The `DatabaseScheduler` pulls tasks from the public schema and sends them onto the queue, with given arguments. You can save the tasks schedule into the public schema with a proper...

Doesn't work for me (RPi 4, Debian 11): ```shell $ docker build --no-cache -t ping-exporter . Sending build context to Docker daemon 134.1kB Step 1/27 : FROM --platform=linux/amd64 ekidd/rust-musl-builder:1.36.0 as...

You can also override the command used. In our case, the GitLab service looks like this: ```yaml services: - name: docker:dind # Good command: [ "dockerd", "-H", "tcp://0.0.0.0:2375", "--tls=false" ]...