We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4ef268 commit 416f8f9Copy full SHA for 416f8f9
1 file changed
.github/workflows/pull_request.yml
@@ -118,6 +118,11 @@ jobs:
118
CONDUCTOR_SERVER_URL: ${{ vars.SDKDEV_V5_SERVER_URL }}
119
CONDUCTOR_AUTH_KEY: ${{ vars.SDKDEV_V5_AUTH_KEY }}
120
CONDUCTOR_AUTH_SECRET: ${{ secrets.SDKDEV_V5_AUTH_SECRET }}
121
+ # Force HTTP/1.1 for integration tests: long-lived HTTP/2 connections to
122
+ # the shared dev server (through its proxy/LB) intermittently stall
123
+ # mid-stream, surfacing as httpcore.ReadTimeout -> ApiException(0). HTTP/1.1
124
+ # uses one request per pooled connection, avoiding that failure class.
125
+ CONDUCTOR_HTTP2_ENABLED: "false"
126
steps:
127
- name: Checkout code
128
uses: actions/checkout@v4
0 commit comments