Skip to content

Commit

Permalink
fix order not to randomly fail backward compatibility check (#19377)
Browse files Browse the repository at this point in the history
* fix order not to randomly fail backward compatibility check

* missing file update
  • Loading branch information
DoNotPanicUA authored Nov 22, 2022
1 parent b4b79ab commit a68846c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,34 +240,34 @@
"method": {
"type": "string",
"const": "CDC",
"order": 0
"order": 1
},
"plugin": {
"type": "string",
"title": "Plugin",
"description": "A logical decoding plugin installed on the PostgreSQL server. The `pgoutput` plugin is used by default. If the replication table contains a lot of big jsonb values it is recommended to use `wal2json` plugin. Read more about <a href=\"https://docs.airbyte.com/integrations/sources/postgres#step-2-select-a-replication-plugin\">selecting replication plugins</a>.",
"enum": ["pgoutput", "wal2json"],
"const": "pgoutput",
"order": 1
"order": 2
},
"replication_slot": {
"type": "string",
"title": "Replication Slot",
"description": "A plugin logical replication slot. Read about <a href=\"https://docs.airbyte.com/integrations/sources/postgres#step-3-create-replication-slot\">replication slots</a>.",
"order": 2
"order": 3
},
"publication": {
"type": "string",
"title": "Publication",
"description": "A Postgres publication used for consuming changes. Read about <a href=\"https://docs.airbyte.com/integrations/sources/postgres#step-4-create-publications-and-replication-identities-for-tables\">publications and replication identities</a>.",
"order": 3
"order": 4
},
"initial_waiting_seconds": {
"type": "integer",
"title": "Initial Waiting Time in Seconds (Advanced)",
"description": "The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. Read about <a href=\"https://docs.airbyte.com/integrations/sources/postgres#step-5-optional-set-up-initial-waiting-time\">initial waiting time</a>.",
"default": 300,
"order": 4,
"order": 5,
"min": 120,
"max": 1200
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,34 +240,34 @@
"method": {
"type": "string",
"const": "CDC",
"order": 0
"order": 1
},
"plugin": {
"type": "string",
"title": "Plugin",
"description": "A logical decoding plugin installed on the PostgreSQL server. The `pgoutput` plugin is used by default. If the replication table contains a lot of big jsonb values it is recommended to use `wal2json` plugin. Read more about <a href=\"https://docs.airbyte.com/integrations/sources/postgres#step-2-select-a-replication-plugin\">selecting replication plugins</a>.",
"enum": ["pgoutput", "wal2json"],
"const": "pgoutput",
"order": 1
"order": 2
},
"replication_slot": {
"type": "string",
"title": "Replication Slot",
"description": "A plugin logical replication slot. Read about <a href=\"https://docs.airbyte.com/integrations/sources/postgres#step-3-create-replication-slot\">replication slots</a>.",
"order": 2
"order": 3
},
"publication": {
"type": "string",
"title": "Publication",
"description": "A Postgres publication used for consuming changes. Read about <a href=\"https://docs.airbyte.com/integrations/sources/postgres#step-4-create-publications-and-replication-identities-for-tables\">publications and replication identities</a>.",
"order": 3
"order": 4
},
"initial_waiting_seconds": {
"type": "integer",
"title": "Initial Waiting Time in Seconds (Advanced)",
"description": "The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. Read about <a href=\"https://docs.airbyte.com/integrations/sources/postgres#step-5-optional-set-up-initial-waiting-time\">initial waiting time</a>.",
"default": 300,
"order": 4,
"order": 5,
"min": 120,
"max": 1200
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,34 +220,34 @@
"method": {
"type": "string",
"const": "CDC",
"order": 0
"order": 1
},
"plugin": {
"type": "string",
"title": "Plugin",
"description": "A logical decoding plugin installed on the PostgreSQL server. The `pgoutput` plugin is used by default. If the replication table contains a lot of big jsonb values it is recommended to use `wal2json` plugin. Read more about <a href=\"https://docs.airbyte.com/integrations/sources/postgres#step-2-select-a-replication-plugin\">selecting replication plugins</a>.",
"enum": ["pgoutput", "wal2json"],
"const": "pgoutput",
"order": 1
"order": 2
},
"replication_slot": {
"type": "string",
"title": "Replication Slot",
"description": "A plugin logical replication slot. Read about <a href=\"https://docs.airbyte.com/integrations/sources/postgres#step-3-create-replication-slot\">replication slots</a>.",
"order": 2
"order": 3
},
"publication": {
"type": "string",
"title": "Publication",
"description": "A Postgres publication used for consuming changes. Read about <a href=\"https://docs.airbyte.com/integrations/sources/postgres#step-4-create-publications-and-replication-identities-for-tables\">publications and replication identities</a>.",
"order": 3
"order": 4
},
"initial_waiting_seconds": {
"type": "integer",
"title": "Initial Waiting Time in Seconds (Advanced)",
"description": "The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. Read about <a href=\"https://docs.airbyte.com/integrations/sources/postgres#step-5-optional-set-up-initial-waiting-time\">initial waiting time</a>.",
"default": 300,
"order": 4,
"order": 5,
"min": 120,
"max": 1200
}
Expand Down

0 comments on commit a68846c

Please sign in to comment.