flapjack 0.7.30 → 0.7.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.md +3 -0
- data/lib/flapjack/gateways/web.rb +1 -1
- data/lib/flapjack/version.rb +1 -1
- metadata +4 -4
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
## Flapjack Changelog
|
|
2
2
|
|
|
3
|
+
# 0.7.31 - 2013-11-06
|
|
4
|
+
- Bug: TypeError at /checks_all gh-363 (@jessereynolds)
|
|
5
|
+
|
|
3
6
|
# 0.7.30 - 2013-11-06
|
|
4
7
|
- Feature: Make logging more configurable gh-27 (@ali-graham)
|
|
5
8
|
- Bug: 5 min default notification interval interferes with granularity of user set notification interval gh-156 (@jessereynolds)
|
|
@@ -335,7 +335,7 @@ module Flapjack
|
|
|
335
335
|
def entity_check_state(entity_name, check)
|
|
336
336
|
entity = Flapjack::Data::Entity.find_by_name(entity_name,
|
|
337
337
|
:redis => redis)
|
|
338
|
-
return if entity.nil?
|
|
338
|
+
return ['-', '-', 'never', 'never', false, false, 'never'] if entity.nil?
|
|
339
339
|
entity_check = Flapjack::Data::EntityCheck.for_entity(entity,
|
|
340
340
|
check, :redis => redis)
|
|
341
341
|
summary = entity_check.summary
|
data/lib/flapjack/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flapjack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.31
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2013-11-
|
|
14
|
+
date: 2013-11-07 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: dante
|
|
@@ -558,7 +558,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
558
558
|
version: '0'
|
|
559
559
|
segments:
|
|
560
560
|
- 0
|
|
561
|
-
hash:
|
|
561
|
+
hash: -3016684688125604852
|
|
562
562
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
563
563
|
none: false
|
|
564
564
|
requirements:
|
|
@@ -567,7 +567,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
567
567
|
version: '0'
|
|
568
568
|
segments:
|
|
569
569
|
- 0
|
|
570
|
-
hash:
|
|
570
|
+
hash: -3016684688125604852
|
|
571
571
|
requirements: []
|
|
572
572
|
rubyforge_project:
|
|
573
573
|
rubygems_version: 1.8.23
|