Skip to content

Commit

Permalink
source-rd-station-marketing: Replace AirbyteLogger with logging.Logger (
Browse files Browse the repository at this point in the history
  • Loading branch information
girarda authored Jun 4, 2024
1 parent 7ff2a3d commit 5360a1a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: fb141f29-be2a-450b-a4f2-2cd203a00f84
dockerImageTag: 0.1.3
dockerImageTag: 0.1.5
dockerRepository: airbyte/source-rd-station-marketing
githubIssueLabel: source-rd-station-marketing
icon: rdstation.svg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
version = "0.1.3"
version = "0.1.5"
name = "source-rd-station-marketing"
description = "Source implementation for RD Station Marketing."
authors = [ "Airbyte <contact@airbyte.io>",]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#

import logging
from typing import Any, List, Mapping, Tuple

import pendulum
from airbyte_cdk.logger import AirbyteLogger
from airbyte_cdk.models import SyncMode
from airbyte_cdk.sources import AbstractSource
from airbyte_cdk.sources.streams import Stream
Expand All @@ -26,7 +26,7 @@


class SourceRDStationMarketing(AbstractSource):
def check_connection(self, logger: AirbyteLogger, config: Mapping[str, Any]) -> Tuple[bool, Any]:
def check_connection(self, logger: logging.Logger, config: Mapping[str, Any]) -> Tuple[bool, Any]:
try:
stream_kwargs = self.get_stream_kwargs(config)
segmentations = Segmentations(**stream_kwargs)
Expand Down
2 changes: 2 additions & 0 deletions docs/integrations/sources/rd-station-marketing.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ Each endpoint has its own performance limitations, which also consider the accou

| Version | Date | Pull Request | Subject |
| :------ | :--------- | :-------------------------------------------------------- | :------------------------------- |
| 0.1.5 | 2024-06-03 | [38916](https://github.com/airbytehq/airbyte/pull/38916) | Replace AirbyteLogger with logging.Logger |
| 0.1.4 | 2024-06-03 | [38916](https://github.com/airbytehq/airbyte/pull/38916) | Replace AirbyteLogger with logging.Logger |
| 0.1.3 | 2024-05-20 | [38372](https://github.com/airbytehq/airbyte/pull/38372) | [autopull] base image + poetry + up_to_date |
| 0.1.2 | 2022-07-06 | [28009](https://github.com/airbytehq/airbyte/pull/28009/) | Migrated to advancedOAuth |
| 0.1.1 | 2022-11-01 | [18826](https://github.com/airbytehq/airbyte/pull/18826) | Fix stream analytics_conversions |
Expand Down

0 comments on commit 5360a1a

Please sign in to comment.