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 aaff540 commit a8fb459Copy full SHA for a8fb459
1 file changed
.github/workflows/pull_request.yml
@@ -107,6 +107,11 @@ jobs:
107
CONDUCTOR_SERVER_URL: ${{ vars.SDKDEV_V5_SERVER_URL }}
108
CONDUCTOR_AUTH_KEY: ${{ vars.SDKDEV_V5_AUTH_KEY }}
109
CONDUCTOR_AUTH_SECRET: ${{ secrets.SDKDEV_V5_AUTH_SECRET }}
110
+ # Force HTTP/1.1 for integration tests: long-lived HTTP/2 connections to
111
+ # the shared dev server (through its proxy/LB) intermittently stall
112
+ # mid-stream, surfacing as httpcore.ReadTimeout -> ApiException(0). HTTP/1.1
113
+ # uses one request per pooled connection, avoiding that failure class.
114
+ CONDUCTOR_HTTP2_ENABLED: "false"
115
steps:
116
- name: Checkout code
117
uses: actions/checkout@v4
0 commit comments