From b1561437e9d3bd8dfcf3fded3ff7ceca274d70e4 Mon Sep 17 00:00:00 2001 From: Seth Hall Date: Sat, 16 Jun 2012 00:35:40 -0400 Subject: [PATCH] Forgot to call the parent method for DoHeartBeat. --- src/logging/writers/ElasticSearch.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logging/writers/ElasticSearch.cc b/src/logging/writers/ElasticSearch.cc index a2019df9fe..46282404a6 100644 --- a/src/logging/writers/ElasticSearch.cc +++ b/src/logging/writers/ElasticSearch.cc @@ -236,7 +236,7 @@ bool ElasticSearch::DoHeartbeat(double network_time, double current_time) BatchIndex(); } - return true; + return WriterBackend::DoHeartbeat(network_time, current_time); }