Feature/20260331 28832950 handle graalcodeexecutor unwanted params silently 1 - #47
Merged
canfuu merged 4 commits intoMar 31, 2026
Conversation
…/20260331210148886_r_release_1003870_meow-agent-code
canfuu
enabled auto-merge
March 31, 2026 13:19
canfuu
deleted the
feature/20260331_28832950_handle_graalcodeexecutor_unwanted_params_silently_1
branch
March 31, 2026 13:20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the Python method generation logic in
GraalCodeExecutorto make generated methods more robust when handling unexpected keyword arguments. The main improvement is that all generated Python methods will now accept extra keyword arguments, which helps prevent runtime errors when extra parameters are passed (such as from form data).Improvements to Python method generation:
GraalCodeExecutor.javato append**_extra_kwargsto the parameter list of generated Python methods, allowing them to gracefully absorb unexpected keyword arguments and avoidTypeErrorexceptions.