junyeong0619 commented on code in PR #66022:
URL: https://github.com/apache/airflow/pull/66022#discussion_r3215498130


##########
task-sdk/src/airflow/sdk/execution_time/request_handlers.py:
##########
@@ -70,6 +73,16 @@ def handle_get_variable(client: Client, msg: GetVariable) -> 
tuple[BaseModel | N
     return var, {}
 
 
+def handle_get_variable_keys(
+    client: Client, msg: GetVariableKeys
+) -> tuple[BaseModel | None, dict[str, bool]]:
+    """Fetch variable keys filtered by prefix."""
+    result = client.variables.keys(prefix=msg.prefix)
+    if not isinstance(result, VariableKeysResponse):

Review Comment:
   Removed it as you suggested.



-- 
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]

Reply via email to