Skip to content

Commit

Permalink
Passing query params alongside the request (#119)
Browse files Browse the repository at this point in the history
* Passing query params alongside the request

* Upgraded version
  • Loading branch information
atulya-astronomer authored Jan 24, 2025
1 parent b854d53 commit 8e42b6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion astronomer_starship/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.2.0"
__version__ = "2.2.1"


def get_provider_info():
Expand Down
1 change: 1 addition & 0 deletions astronomer_starship/starship.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def proxy(self):
request_method,
url,
headers=request_headers,
params=request.args if request.args else None,
**({"data": request.data} if request.data else {}),
)
response_headers = dict(response.headers)
Expand Down

0 comments on commit 8e42b6a

Please sign in to comment.