Matt Davis

Results 600 comments of Matt Davis

I am hoping to keep supporting windows build related to issues -- I finally got pycurl to build locally on my Windows ecosystem -- libcurl, and pycurl building solidly now....

@thedrow From the trace we see that the issue is in the call to get_table -- my changes in #1089 change the _lookup method of the redis transport to not...

@stevanmilic I think there is a caveat to what you are saying. `get_table` calls `smemebers` O(n) which has to retrieve all the memebers for the set from redis which could...

@stevanmilic In celery you can bind multiple queues on a single exchange -- we do this all the time. How it organizes the data in Redis is to use a...

Well n could be very large, which is what I thought you were reporting initially because I did not realize it was a test of ~100K messages/elements. Anyway, if I...

@yarinb Let me know how it is, I provided proper unit test coverage but I want feedback, because I have extensive Celery/Kombu experience using AMQP and I also have some...

@jslusher I would definitely recommend pinning all of the celery requirements, for example: # note these are old celery==4.2.1 kombu==4.2.2.post1 amqp==2.3.2 billiard==3.5.0.3 The reason to pin is so that you...

I'll give the `Dockerfile.dev` a try but I am not seeing anything like this with the production Dockerfile buildout.

@ohuu What version of docker-compose are you on, and what are you invoking to being up Dockerfile.dev? FWIW I am using: `docker-compose version 1.29.2, build unknown` `Docker version 20.10.14, build...

I did just note one thing in the Dockerfile.dev build: ``` husky > Setting up git hooks Husky requires Git >=2.13.0. Got v2.11.0. husky > Failed to install ``` I...