Auster Cid

Results 7 comments of Auster Cid

I'm also struggling with this issue. The `copilot task run` workaround does not seem to be working for me, as it appears to return the exit code for deploying the...

Hi @iamhopaul123, that works! Thanks!

+1 Running Django with a celery worker service. Also have different dev and prod image versions between these environments, and these end up using the same repository which I don't...

I believe I'm having the same issue in my deployment. The dashboard/chart loads just fine after I refresh the page.

@xrmx I've added the requested test Have to admit that mocking RedisCluster was a challenge. Full disclosure, I ended up copying some code from https://github.com/redis/redis-py/blob/master/tests/test_cluster.py Hope that's not a problem.

Here's a workaround: ```python from opentelemetry.instrumentation.redis import ( RedisInstrumentor, _set_connection_attributes, ) def _redis_request_hook(span, conn, args, kwargs): if hasattr(conn, "connection_pool") or not span.is_recording(): return if hasattr(conn, "nodes_manager"): # means we're working...