flapjack 0.6.48 → 0.6.49
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/lib/flapjack/data/contact.rb +4 -2
- data/lib/flapjack/version.rb +1 -1
- metadata +1 -1
@@ -32,8 +32,10 @@ module Flapjack
|
|
32
32
|
|
33
33
|
redis.del( redis.keys("contact:*") +
|
34
34
|
redis.keys("contact_media:*") +
|
35
|
-
|
36
|
-
|
35
|
+
# FIXME: when we do source tagging we can properly
|
36
|
+
# clean up contacts_for: keys
|
37
|
+
# redis.keys('contacts_for:*') +
|
38
|
+
redis.keys("contact_pagerduty:*") )
|
37
39
|
end
|
38
40
|
|
39
41
|
def self.find_by_id(contact_id, options = {})
|
data/lib/flapjack/version.rb
CHANGED