Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing the default base date of the Tree View #455

Merged
merged 2 commits into from
Sep 24, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion airflow/www/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ def tree(self):
num_runs = int(num_runs) if num_runs else 25

if not base_date:
base_date = dag.latest_execution_date or datetime.now()
base_date = (dag.latest_execution_date + 2 * dag.schedule_interval) or datetime.now()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the case of a new DAG dag.latest_execution_date will be None and this will raise an error, you'll need an if here...

else:
base_date = dateutil.parser.parse(base_date)
base_date = utils.round_time(base_date, dag.schedule_interval)
Expand Down