vincbeck commented on code in PR #57452:
URL: https://github.com/apache/airflow/pull/57452#discussion_r2470921526


##########
airflow-core/src/airflow/api_fastapi/core_api/routes/public/backfills.py:
##########
@@ -162,6 +162,7 @@ def unpause_backfill(backfill_id: NonNegativeInt, session: 
SessionDep) -> Backfi
         raise HTTPException(status.HTTP_409_CONFLICT, "Backfill is already 
completed.")
     if b.is_paused:
         b.is_paused = False
+    session.commit()

Review Comment:
   Is it a bug you experienced? Why did you decided to do that? It feels really 
weird to me to change something in the implementation although the PR focuses 
on fixing static annotations



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