You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by sa...@apache.org on 2017/10/31 21:59:08 UTC

incubator-airflow git commit: [AIRFLOW-1771] Rename heartbeat to avoid confusion

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 52f8d7da9 -> 6b8fe9857


[AIRFLOW-1771] Rename heartbeat to avoid confusion

Closes #2743 from saguziel/aguziel-heartbeat


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/6b8fe985
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/6b8fe985
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/6b8fe985

Branch: refs/heads/master
Commit: 6b8fe9857429d509ea95c426e6d4271269e8c29f
Parents: 52f8d7d
Author: Alex Guziel <al...@airbnb.com>
Authored: Tue Oct 31 14:59:05 2017 -0700
Committer: Alex Guziel <al...@airbnb.com>
Committed: Tue Oct 31 14:59:05 2017 -0700

----------------------------------------------------------------------
 airflow/jobs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/6b8fe985/airflow/jobs.py
----------------------------------------------------------------------
diff --git a/airflow/jobs.py b/airflow/jobs.py
index 7a7e564..7460cb8 100644
--- a/airflow/jobs.py
+++ b/airflow/jobs.py
@@ -181,7 +181,7 @@ class BaseJob(Base, LoggingMixin):
 
         self.heartbeat_callback(session=session)
         session.close()
-        self.log.debug('[heart] Boom.')
+        self.log.debug('[heartbeat]')
 
     def run(self):
         Stats.incr(self.__class__.__name__.lower() + '_start', 1, 1)