[AIRFLOW-908] Print hostname at the start of cli run

Closes #2329 from AllisonWang/master
This commit is contained in:
Allison Wang 2017-05-30 11:26:24 -07:00 коммит произвёл Dan Davydov
Родитель a1f4227bee
Коммит 460134bf25
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -19,6 +19,7 @@ import logging
import reprlib
import os
import socket
import subprocess
import textwrap
import warnings
@ -384,6 +385,9 @@ def run(args, dag=None):
level=settings.LOGGING_LEVEL,
format=settings.LOG_FORMAT)
hostname = socket.getfqdn()
logging.info("Running on host {}".format(hostname))
if not args.pickle and not dag:
dag = get_dag(args)
elif not dag: