ME
Size: a a a
ME
SZ
AS
SZ
ФЧ
VE
ФЧ
VE
ФЧ
ZL
def test_func():
print(datetime.datetime.now(pytz.timezone("Asia/Vladivostok")))
sys.exit(0)
default_args = {
'owner': 'owner',
'depends_on_past': False,
'retries': 1,
'retry_delay': datetime.timedelta(minutes=5),
}
with DAG('dag_test',
description='dag_test',
default_args=default_args,
schedule_interval=datetime.timedelta(minutes=10),
start_date=datetime.datetime(2021, 5, 29, 13, 10, 0, tzinfo=local_tz)) as dag:
task1 = PythonOperator(
task_id='test',
python_callable=test_func
)
task1
ММ
ZL
ММ
ZL
ММ
ВЛ