File tree Expand file tree Collapse file tree 3 files changed +104
-120
lines changed Expand file tree Collapse file tree 3 files changed +104
-120
lines changed Original file line number Diff line number Diff line change 2
2
CHANGELOG
3
3
=========
4
4
5
- 1.16.4.dev
6
- ==========
5
+ 1.17.0
6
+ ======
7
7
8
+ * bug-fix: Revert appending Airflow retry id to default job name
8
9
* bug-fix: Session: don't allow get_execution_role() to return an ARN that's not a role but has "role" in the name
9
10
* bug-fix: Remove ``__all__ `` from ``__init__.py `` files
10
11
Original file line number Diff line number Diff line change 27
27
import six
28
28
29
29
30
- AIRFLOW_RETRY_MACRO = "{{ task_instance.try_number }}"
31
- AIRFLOW_TIME_MACRO = "{{ execution_date.strftime('%Y-%m-%d-%H-%M-%S') }}" + "-{}" .format (AIRFLOW_RETRY_MACRO )
32
- AIRFLOW_TIME_MACRO_LEN = 22
33
- AIRFLOW_TIME_MACRO_SHORT = "{{ execution_date.strftime('%y%m%d-%H%M') }}" + "-{}" .format (AIRFLOW_RETRY_MACRO )
34
- AIRFLOW_TIME_MACRO_SHORT_LEN = 14
30
+ AIRFLOW_TIME_MACRO = "{{ execution_date.strftime('%Y-%m-%d-%H-%M-%S') }}"
31
+ AIRFLOW_TIME_MACRO_LEN = 19
32
+ AIRFLOW_TIME_MACRO_SHORT = "{{ execution_date.strftime('%y%m%d-%H%M') }}"
33
+ AIRFLOW_TIME_MACRO_SHORT_LEN = 11
35
34
36
35
37
36
# Use the base name of the image as the job name if the user doesn't give us one
You can’t perform that action at this time.
0 commit comments