Skip to content

Commit 4928c3f

Browse files
authored
Merge pull request #691 from LBGarber/fix/postgres-commit-type-enum
fix: Correct enum for `replication_commit_type`
2 parents 10c3433 + 7b211bd commit 4928c3f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

openapi.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20348,11 +20348,11 @@ components:
2034820348
replication_commit_type:
2034920349
type: string
2035020350
enum:
20351-
- on
20352-
- local
20353-
- remote_write
20354-
- remote_apply
20355-
- off
20351+
- 'on'
20352+
- 'local'
20353+
- 'remote_write'
20354+
- 'remote_apply'
20355+
- 'off'
2035620356
default: local
2035720357
example: local
2035820358
description: |

0 commit comments

Comments
 (0)