https://prefect.io logo
Title
k

kasteph

05/18/2023, 5:50 PM
Has anyone been seeing connection issues with Prefect 2.10.7?
Backing off due to consecutive errors, using increased interval of  60.0s.
ConnectionState.CLOSED
	
httpx.LocalProtocolError: Invalid input ConnectionInputs.SEND_HEADERS in state 
    raise mapped_exc(message) from exc	
line 77, in map_httpcore_exceptions
  File "/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py"
1
k

kasteph

05/18/2023, 6:05 PM
Am I understanding correctly that just updating httpcore should be sufficient?
z

Zanie

05/18/2023, 6:06 PM
🤞
Yeah that should do it now that we finally got the fix upstreamed
🙌 2
c

Cody

05/22/2023, 9:25 PM
Sorry for the silly question - where do we update httpcore? Should I do it in my Dockerfile if I'm running my flows from ECR? Or is this something that needs to be fixed on the agent side?
k

kasteph

05/22/2023, 9:27 PM
You can update it in your dependency manager (for e.g. with poetry, I do
poetry update httpcore
)
c

Cody

05/22/2023, 9:34 PM
Gotcha. Thank you!