MatrixManAtYrService opened a new issue #18918:
URL: https://github.com/apache/airflow/issues/18918
### Apache Airflow version
2.2.0 (latest released)
### Operating System
Debian Buster (in docker)
### Versions of Apache Airflow Providers
n/a
### Deployment
Astronomer
### Deployment details
Dockerfile:
```
FROM quay.io/astronomer/ap-airflow-dev:2.2.0-buster-onbuild-44762
```
**DAG**
```
with DAG(
dag_id='future_dag',
start_date=datetime.now() + timedelta(days=1),
schedule_interval=timedelta(weeks=1),
) as dag:
DummyOperator(
task_id='dummy'
)
```
### What happened
The DAG succeeded, but the task didn't run:

### What you expected to happen
Whatever the tasks do, the dag should do also. Since this is a manual
execution, I expect that any scheduling constraints will be ignored and the
tasks will run.
### How to reproduce
Run the DAG indicated above, notice that its task didn't run.
### Anything else
_No response_
### Are you willing to submit PR?
- [ ] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
--
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]