skip to Main Content

I have used airflow telegram operator for notifying me on some metric after some task. Today I check the operator task fail with this exception:

TypeError: AsyncConnectionPool.__init__() got an unexpected keyword argument 'socket_options'

Well I have researched some solution to downgrade httpx to 0.24.1 but python-telegram-lib does not fit with that

2

Answers


  1. On docker-compose.yaml:
    With _PIP_ADDITIONAL_REQUIREMENTS : i add httpx==0.24.1
    it work for me

    Login or Signup to reply.
  2. My 0.24.1 cannot work by 0.25.0 works

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search