Forráskód Böngészése

Revert "Changed timeouts to consecutive errors"

This reverts commit 46eee75f07f3a7cde4720c079604c2172425a17d.
Andrew Kane 8 éve
szülő
commit
45552ebc5f

+ 0 - 1
CHANGELOG.md

@@ -1,7 +1,6 @@
 ## 1.4.0 [unreleased]
 
 - Added `slow` cache mode
-- Disable checks after 5 consecutive errors
 - Fixed `BLAZER_DATABASE_URL required` error
 - Fixed issue with duplicate column names
 

+ 5 - 5
app/models/blazer/check.rb

@@ -25,12 +25,12 @@ module Blazer
 
       self.last_run_at = Time.now if respond_to?(:last_run_at=)
 
-      if respond_to?(:consecutive_errors=)
-        if state == "timed out" || state == "error"
-          self.consecutive_errors += 1
-          self.state = "disabled" if consecutive_errors >= 5
+      if respond_to?(:timeouts=)
+        if state == "timed out"
+          self.timeouts += 1
+          self.state = "disabled" if timeouts >= 3
         else
-          self.consecutive_errors = 0
+          self.timeouts = 0
         end
       end
 

+ 0 - 1
lib/generators/blazer/templates/install.rb

@@ -38,7 +38,6 @@ class <%= migration_class_name %> < ActiveRecord::Migration
       t.text :emails
       t.boolean :invert
       t.timestamp :last_run_at
-      t.integer :consecutive_errors, default: 0
       t.timestamps
     end
   end