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 <[email protected]> Authored: Tue Oct 31 14:59:05 2017 -0700 Committer: Alex Guziel <[email protected]> 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)
