Paul Rysiavets

Results 66 comments of Paul Rysiavets

`main.py` config is a bit different. ``` app = Celery( "myapp", broker="sqs://", # result_backend="redis://", result_backend="redis://localhost:6379/1", # local docker task_acks_late=True, worker_prefetch_multiplier=16, task_default_queue="default_static", task_queues={ "default_static": { "exchange": "default_static", "routing_key": "default_static", } },...

@auvipy i'd like to hear more use-case specifics from @mdrachuk and @mgorven : environments, os'es, python versions. with-or-without a proxy (as i didn't test that one out) i'd like to...

as a side-note: i am also thinking about `aiohttp`+`aiobotocore` in `urllib3`+`botocore` place, as i heard that it is even faster than other py-clients. but i am still waiting for a...

> v5.7+ will be able to have an alternative if it fits better than both of these. i started to have an idea to give an option to pick the...

sure. revert now -> introduce choice later. i'll lock the version on my side (or switch back to my fork) on my environments and will still try to reproduce the...

@Enorio will you be so kind to test with the v2 implementation [here](https://github.com/celery/kombu/issues/2258#issuecomment-2939411489)? (the PR is mentioned above)

> how this is different then #2261? @auvipy mostly other fixes that were done are left in place - enabled/fixed SQS Secure connection (which is False before and is a...

I can also port certifi ssl certificate finding mechanism to pycurl implementation if desired

@auvipy explain "clean revert"

@auvipy i've been thinking about your request. and i got to a conclusion. i assume you want me to "create a revert-commit" and then apply the other fixes that would...