Skip to content

Commit

Permalink
Fixes default resource endpoint params merging
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash committed Jul 24, 2024
1 parent 123c5be commit e0a6d15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/rest_api/config_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ def _merge_resource_endpoints(
}
if "params" in config_endpoint:
merged_endpoint["params"] = {
**(merged_endpoint.get("json", {})),
**(merged_endpoint.get("params", {})),
**config_endpoint["params"],
}
# merge columns
Expand Down

0 comments on commit e0a6d15

Please sign in to comment.