Skip to content

Commit

Permalink
Merge pull request #7 from instructure/fixed_parameter_passing
Browse files Browse the repository at this point in the history
Fixed account id passing
  • Loading branch information
balazs-szogi-instructure authored Aug 27, 2024
2 parents 5c34acc + c9d8d1c commit cdad549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_canvas_catalog/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_url_params(
next_page_token: Any | None,
) -> dict[str, Any]:
params = super().get_url_params(context, next_page_token)
params["accountId"] = 1
params["account_id"] = self.config.get("account_id")

# log params
self.logger.info(f"get_url_params: {params}")
Expand Down

0 comments on commit cdad549

Please sign in to comment.