-
Notifications
You must be signed in to change notification settings - Fork 4.5k
🐛 Source Linkedin Ads: Fix issue where Accounts
stream did not correctly handle provided account IDs
#38013
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 Ads: Fix issue where Accounts
stream did not correctly handle provided account IDs
#38013
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] | |
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
version = "2.1.0" | ||
version = "2.1.1" | ||
name = "source-linkedin-ads" | ||
description = "Source implementation for Linkedin Ads." | ||
authors = [ "Airbyte <[email protected]>",] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -175,7 +175,7 @@ def test_next_page_token(self, requests_mock, response_json, expected): | |
assert expected == result | ||
|
||
def test_request_params(self): | ||
expected = "pageSize=500&q=search&search=(id:(values:List(1,2)))" | ||
expected = "pageSize=500&q=search&search=(id:(values:List(urn%3Ali%3AsponsoredAccount%3A1,urn%3Ali%3AsponsoredAccount%3A2)))" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should we add test config with account ids for check in cat to prevent similar issue in future? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added the new config |
||
result = self.stream.request_params(stream_state={}, stream_slice={"account_id": 123}) | ||
assert expected == result | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please remove
dockerImageTag: 2.0.0
as issue is fixed nowThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed