Alexandre Potvin-Demers
Alexandre Potvin-Demers
Hi! I'm experiencing about the same time for launching a VM instance using CML. I'm trying to launch a runner with the following specs: - `cloud: gcp` - `cloud-region: us-west`...
@dacbd I'd say it's only a minor inconvenience, since everything still works! On my end, not necessarily an urgent mater. Is there a major difference between GCP and AWS that...
@dacbd Oh I see... In that case, I'll keep it exactly like that on my side! Thanks!
I am also facing the same issue on MacOS 12.3.1, on an M1 Pro 2021 MacBook Pro!
Also a blocker here, commenting to stay in the loop!
I'm also looking for a solution to this problem! Right now, my best bet is to manually access the queue in Redis, and to delete the tasks from the queue....
> Also, hitting this issue. It was quite surprising to see this semantics. Curious to know, what's your opinion on the best workaround for this?
> @alexpotv I don't know yet tbh. I was not able to find anything quickly. Some ideas to explore, check: see if it's possible to drop it directly on the...
@shcheklein Here's how I did it using FastAPI: ```python from redis import Redis from redis.lock import Lock as RedisLock @router.post("/{task_id}/stop") async def stop_task(task_id: str, redis_client: Redis, redis_lock: RedisLock): if not...
@shcheklein I just found out from [this StackOverflow answer](https://stackoverflow.com/a/50183592) that it's possible to use the Celery app instance itself to access the Redis instance, without the need for an external...