From 8fada32aedb559731c62f0e35443e4e6dfd3d600 Mon Sep 17 00:00:00 2001 From: Malik Diarra Date: Tue, 19 Mar 2024 13:31:32 -0700 Subject: [PATCH] feat: add transient_error as new failure type (#69) --- .../src/main/resources/airbyte_protocol/airbyte_protocol.yaml | 1 + .../src/main/resources/airbyte_protocol/v0/airbyte_protocol.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml b/protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml index 74392bc..563632a 100644 --- a/protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml +++ b/protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml @@ -272,6 +272,7 @@ definitions: enum: - system_error - config_error + - transient_error stream_descriptor: description: "The stream associated with the error, if known (optional)" "$ref": "#/definitions/StreamDescriptor" diff --git a/protocol-models/src/main/resources/airbyte_protocol/v0/airbyte_protocol.yaml b/protocol-models/src/main/resources/airbyte_protocol/v0/airbyte_protocol.yaml index 31c8a17..7626c43 100644 --- a/protocol-models/src/main/resources/airbyte_protocol/v0/airbyte_protocol.yaml +++ b/protocol-models/src/main/resources/airbyte_protocol/v0/airbyte_protocol.yaml @@ -273,6 +273,7 @@ definitions: enum: - system_error - config_error + - transient_error stream_descriptor: description: "The stream associated with the error, if known (optional)" "$ref": "#/definitions/StreamDescriptor"