Rename StepFunctionStartExecutionOperator's input field to match its constructor argument - #70544
Merged
Merged
Conversation
bramhanandlingala
requested review from
amoghrajesh,
ashb,
bugraoz93,
gopidesupavan,
jason810496,
jscheffl,
o-nikolas and
potiuk
as code owners
July 27, 2026 16:46
…constructor argument
bramhanandlingala
force-pushed
the
fix/70296-5
branch
from
July 27, 2026 17:56
e5b423b to
6e50d2a
Compare
vincbeck
requested changes
Jul 28, 2026
bramhanandlingala
force-pushed
the
fix/70296-5
branch
from
July 29, 2026 10:34
ba95bad to
c0e3683
Compare
vincbeck
approved these changes
Jul 29, 2026
Contributor
Backport failed to create: v3-3-test. View the failure log Run detailsNote: As of Merging PRs targeted for Airflow 3.X In matter of doubt please ask in #release-management Slack channel.
You can attempt to backport this manually by running: cherry_picker eed1a39 v3-3-testThis should apply the commit to the v3-3-test branch and leave the commit in conflict state marking After you have resolved the conflicts, you can continue the backport process by running: cherry_picker --continueIf you don't have cherry-picker installed, see the installation guide. |
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.
Fixes the amazon provider's StepFunctionStartExecutionOperator entry from the #70296 exemption-list burn-down.
state_machine_inputis a template field, but__init__assigned it toself.input— a name that doesn't match either the constructor argument (state_machine_input) or the declared template field, so thevalidate-operators-initprek hook flagged it as a missing/invalid assignment.Renamed the internal attribute (and the corresponding entry in
template_fields) frominputtostate_machine_inputso it matches the constructor argument directly. No transformation or validation was involved — this was a pure naming mismatch, not a rendering-order bug — and the public constructor signature is unchanged, so this isn't a breaking change for existing DAGs.self.input→self.state_machine_inputin__init__andexecute().template_fieldsaccordingly.op.input.validate_operators_init_exemptions.txt.Verified locally that
scripts/ci/prek/validate_operators_init.pyreports zero findings for this class after the change, and that the existing unit tests intest_step_function.pypass unmodified aside from the one updated attribute assertion.Related to #70296
Gen-AI disclosure: I used a generative AI tool to help identify the root
cause, write tests, and draft the PR description. I reviewed, tested, and
verified all changes locally before submitting.
Was generative AI tooling used to co-author this PR?
Generated-by: Claude following the guidelines