Skip to content

Commit 5599379

Browse files
committed
Sync open source content 🐝 (from cd21f80580cd701d5a1459d45d819acb0a5489f5)
1 parent 5688bf3 commit 5599379

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

β€Ždocs/speakeasy-reference/generation/python-config.mdxβ€Ž

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,3 +398,29 @@ python:
398398
{ key: "description", header: "Description" },
399399
]}
400400
/>
401+
402+
## Fix flags
403+
404+
```yml
405+
python:
406+
fixFlags:
407+
asyncPaginationSep2025: true
408+
```
409+
410+
<Table
411+
data={[
412+
{
413+
name: "asyncPaginationSep2025",
414+
required: "false",
415+
default: "true for new SDKs, false for existing SDKs",
416+
description:
417+
"Disabling not recommended. Enables changes introduced in September 2025 to fix async pagination methods to return async next() functions instead of synchronous ones, preventing blocking fetches after the initial API call. Defaults to true for new SDKs. For existing SDKs, setting true is recommended, but will be a breaking change.",
418+
},
419+
]}
420+
columns={[
421+
{ key: "name", header: "Name" },
422+
{ key: "required", header: "Required" },
423+
{ key: "default", header: "Default Value" },
424+
{ key: "description", header: "Description" },
425+
]}
426+
/>

0 commit comments

Comments
Β (0)