fau-st
Results
2
comments of
fau-st
Based on your findings, I wrote a quick workaround based on HTTPS's [event hooks](https://www.python-httpx.org/advanced/event-hooks/). ```python async def _fix_ghes_graphql_endpoint(request: httpx.Request) -> None: GHES_GRAPHQL_SUFFIX_TOFIX = b"/api/v3/graphql" if request.url.raw_path.endswith(GHES_GRAPHQL_SUFFIX_TOFIX): request.url = request.url.copy_with( raw_path=request.url.raw_path[:...
@yanyongyu Thank you very much, I tested your changes and everything seems to work great.