From b712e60c86c1c3398a7756f9a97a3a05d3ff4d37 Mon Sep 17 00:00:00 2001
From: mattab <matthieu.aubry@gmail.com>
Date: Sun, 18 May 2014 17:28:50 +1200
Subject: [PATCH] Fail when there was an exception in tracker

---
 piwik.php | 1 +
 1 file changed, 1 insertion(+)

diff --git a/piwik.php b/piwik.php
index f3327f666f..18f5b22a54 100644
--- a/piwik.php
+++ b/piwik.php
@@ -126,6 +126,7 @@ if (!defined('PIWIK_ENABLE_TRACKING') || PIWIK_ENABLE_TRACKING) {
         $process->main();
     } catch (Exception $e) {
         echo "Error:" . $e->getMessage();
+        exit(1);
     }
     ob_end_flush();
     if ($GLOBALS['PIWIK_TRACKER_DEBUG'] === true) {
-- 
GitLab