Kundan-CR7 opened a new pull request, #64062:
URL: https://github.com/apache/airflow/pull/64062

   Fixes a logic issue in `Variable.check_for_write_conflict` where a `return 
None`
   statement was placed inside the loop iterating over secrets backends.
   
   Because of this, the function exited after the first iteration, preventing
   remaining backends from being checked. This could lead to missed conflict 
detection
   in environments with multiple secrets backends.
   
   The fix moves the `return None` statement outside the loop so that all 
backends
   are evaluated before returning.
   
   This change corrects the control flow without introducing any new behavior.
   
   closes: #64060


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