pierrejeambrun commented on code in PR #58344:
URL: https://github.com/apache/airflow/pull/58344#discussion_r2557065624
##########
task-sdk/src/airflow/sdk/api/client.py:
##########
@@ -460,6 +462,7 @@ def get(
params.update({"map_index": map_index})
if include_prior_dates:
params.update({"include_prior_dates": include_prior_dates})
+ key = quote(key, safe="")
Review Comment:
not sure if this is needed on the client side. I don't think so
##########
task-sdk/src/airflow/sdk/api/client.py:
##########
@@ -517,6 +521,7 @@ def delete(
params = {}
if map_index is not None and map_index >= 0:
params = {"map_index": map_index}
+ key = quote(key, safe="")
Review Comment:
same for others
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]