Skip to content

Commit 6536a39

Browse files
authored
Fix log trace message (#37366)
1 parent afda83a commit 6536a39

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

airbyte-integrations/connectors/destination-e2e-test/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ data:
22
connectorSubtype: unknown
33
connectorType: destination
44
definitionId: 2eb65e87-983a-4fd7-b3e3-9d9dc6eb8537
5-
dockerImageTag: 0.3.2
5+
dockerImageTag: 0.3.3
66
dockerRepository: airbyte/destination-e2e-test
77
githubIssueLabel: destination-e2e-test
88
icon: airbyte.svg

airbyte-integrations/connectors/destination-e2e-test/src/main/java/io/airbyte/integrations/destination/e2e_test/logging/LoggingConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void accept(final AirbyteMessage message) {
5353
LOGGER.info("Emitting state: {}", message);
5454
outputRecordCollector.accept(message);
5555
return;
56-
} else if (message.getType() != Type.TRACE) {
56+
} else if (message.getType() == Type.TRACE) {
5757
LOGGER.info("Received a trace: {}", message);
5858
} else if (message.getType() != Type.RECORD) {
5959
return;

docs/integrations/destinations/e2e-test.md

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ The OSS and Cloud variants have the same version number starting from version `0
4646

4747
| Version | Date | Pull Request | Subject |
4848
|:--------|:-----------| :------------------------------------------------------- |:----------------------------------------------------------|
49+
| 0.3.3 | 2024-04-16 | [37366](https://github.com/airbytehq/airbyte/pull/37366) | Fix Log trace messages |
4950
| 0.3.2 | 2024-02-14 | [36812](https://github.com/airbytehq/airbyte/pull/36812) | Log trace messages |
5051
| 0.3.1 | 2024-02-14 | [35278](https://github.com/airbytehq/airbyte/pull/35278) | Adopt CDK 0.20.6 |
5152
| 0.3.0 | 2023-05-08 | [25776](https://github.com/airbytehq/airbyte/pull/25776) | Standardize spec and change property field to non-keyword |

0 commit comments

Comments
 (0)