mitre88 opened a new pull request, #70491: URL: https://github.com/apache/airflow/pull/70491
`NeptuneStartDbClusterOperator` and `NeptuneStopDbClusterOperator` take a `db_cluster_id` parameter but stored it as `self.cluster_id` and templated `"cluster_id"` — an aliased assignment the init checks cannot verify. This renames the internal attribute (and the template field) to `db_cluster_id` so it matches the public parameter, the same alignment as #70364 did for `StepFunctionStartExecutionOperator`. The public constructor parameter is unchanged; only code reading the operator's `.cluster_id` attribute directly would notice. Removes both classes from the exemption list. related: #70296 --- ##### Was generative AI tooling used to co-author this PR? - [X] Yes — Claude Code (Fable 5) Generated-by: Claude Code (Fable 5) following [the guidelines](https://github.com/apache/airflow/blob/main/contributing-docs/05_pull_requests.rst#gen-ai-assisted-contributions) -- 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]
