ashb commented on a change in pull request #4298: [AIRFLOW-3478] Make sure that
the session is closed
URL: https://github.com/apache/incubator-airflow/pull/4298#discussion_r240056679
##########
File path: airflow/bin/cli.py
##########
@@ -423,14 +418,11 @@ def unpause(args, dag=None):
def set_is_paused(is_paused, args, dag=None):
dag = dag or get_dag(args)
- session = settings.Session()
- dm = session.query(DagModel).filter(
- DagModel.dag_id == dag.dag_id).first()
- dm.is_paused = is_paused
- session.commit()
Review comment:
Do we want to remove all the `.commit()` calls too? That seems like without
it changes won't be persisted back to the DB until later?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services