IgV52 commented on issue #50421:
URL: https://github.com/apache/airflow/issues/50421#issuecomment-2872517004

   > [@IgV52](https://github.com/IgV52) could you please help with the DAG 
here? It is not too clear from the issue.
   
   `
   
       from airflow.sdk import DAG
       
       from airflow.providers.standard.operators.python import PythonOperator
       from datetime import datetime
       
       def test():
           print("TEST")
       
       with DAG(
           "test",
           start_date=datetime(2025, 1, 1),
       ) as dag:
           task = PythonOperator(
               task_id="test",
               python_callable=test,
           )
   
   `
   
   When using MetastoreBackend as a backend for secrets, an error occurs, but 
the database query itself is executed and the result can be obtained.
   
   The point of the error is to abort the commit, but then the entire 
MetastoreBackend module breaks.


-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to