Skip to content

Commit

Permalink
fix schemaless config
Browse files Browse the repository at this point in the history
  • Loading branch information
lideke committed Apr 5, 2022
1 parent 06598a7 commit f55ed1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tap_google_ads/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def shuffle(shuffle_list, shuffle_key, current_value, sort_function):
return top_half + bottom_half


def do_sync(config, catalog, resource_schema, state, schemaless):
def do_sync(config, catalog, resource_schema, state):
# QA ADDED WORKAROUND [START]
try:
customers = json.loads(config["login_customer_ids"])
Expand Down Expand Up @@ -108,7 +108,7 @@ def do_sync(config, catalog, resource_schema, state, schemaless):
else:
stream_obj = report_streams[stream_name]

stream_obj.sync(sdk_client, customer, catalog_entry, config, state, schemaless)
stream_obj.sync(sdk_client, customer, catalog_entry, config, state, config["schemaless"])

state.pop("currently_syncing")
singer.write_state(state)

0 comments on commit f55ed1a

Please sign in to comment.