Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

πŸ› 🚨🚨 Source LinkedIn Pages: fixed failing connection checks #18967

Closed
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
68b16eb
fixed issue with the org id not being an integer and deleted duplicat…
tinomerl Nov 4, 2022
7dad80e
bumped version to 0.1.1
tinomerl Nov 4, 2022
8f0038b
Merge branch 'master' into tinomerl/15986-linkedin-pages-connection-t…
vincentkoc Nov 5, 2022
8d90b4d
Update source_definitions.yaml
vincentkoc Nov 5, 2022
bf1450b
Update acceptance-test-config.yml
vincentkoc Nov 5, 2022
4518d71
Update linkedin-pages.md
vincentkoc Nov 5, 2022
49d1ac5
black formatting for python
vincentkoc Nov 5, 2022
6011c72
Merge branch 'master' into tinomerl/15986-linkedin-pages-connection-t…
vincentkoc Nov 6, 2022
1f5f95f
Merge branch 'master' into tinomerl/15986-linkedin-pages-connection-t…
vincentkoc Nov 7, 2022
1706dd2
Merge branch 'master' into tinomerl/15986-linkedin-pages-connection-t…
sajarin Nov 8, 2022
6d7ee56
Merge branch 'master' into tinomerl/15986-linkedin-pages-connection-t…
vincentkoc Jan 13, 2023
26c4d18
Merge branch 'master' into tinomerl/15986-linkedin-pages-connection-t…
vincentkoc Jan 19, 2023
9b3154b
Merge branch 'master' into tinomerl/15986-linkedin-pages-connection-t…
vincentkoc Jan 21, 2023
ddddf4b
fix tests
marcosmarxm Mar 13, 2023
363e024
merge master
marcosmarxm Mar 13, 2023
462f2f3
update acceptance test file
marcosmarxm Mar 13, 2023
7ecdadd
Merge branch 'master' into tinomerl/15986-linkedin-pages-connection-t…
marcosmarxm Mar 16, 2023
d5b5eaf
change break spec - backward compt.
marcosmarxm Mar 16, 2023
fa37036
fix changelog
marcosmarxm Mar 16, 2023
aedafc3
auto-bump connector version
octavia-squidington-iii Mar 16, 2023
ad8f3a5
Merge branch 'master' into tinomerl/15986-linkedin-pages-connection-t…
marcosmarxm Mar 16, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_linkedin_pages ./source_linkedin_pages
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.0
LABEL io.airbyte.version=0.1.1
LABEL io.airbyte.name=airbyte/source-linkedin-pages
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ connector_image: airbyte/source-linkedin-pages:dev
tests:
spec:
- spec_path: "source_linkedin_pages/spec.json"
backward_compatibility_tests_config:
disable_for_version: "0.1.0"
connection:
- config_path: "secrets/config.json"
status: "succeed"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"org_id": 12345678,
"org_id": "12345678",
"credentials": {
"auth_method": "access_token",
"access_token": "wrong_token_sra6ibiw0ZWEdMnC0ZizeD1gLRQP6u1pkQl"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"org_id": 12345678,
"org_id": "12345678",
"credentials": {
"auth_method": "access_token",
"access_token": "example_token_string123"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,5 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]:
OrganizationLookup(config),
FollowerStatistics(config),
ShareStatistics(config),
TotalFollowerCount(config),
ShareStatistics(config),
TotalFollowerCount(config),
TotalFollowerCount(config)
]
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"properties": {
"org_id": {
"title": "Organization ID",
"type": "integer",
"type": "string",
"airbyte_secret": true,
"description": "Specify the Organization ID",
"examples": ["123456789"]
Expand Down