PerformedRulesByThing: don't store rule YAML

This was originally added for debugging purposes but is no longer
needed.
This commit is contained in:
Chad Birch
2015-12-08 18:10:06 -07:00
parent 48ff9583e3
commit 8f6dedca05

View File

@@ -47,7 +47,7 @@ class PerformedRulesByThing(tdb_cassandra.View):
@classmethod
def mark_performed(cls, thing, rule):
rowkey = cls._rowkey(thing)
cls._set_values(rowkey, {rule.unique_id: rule.yaml})
cls._set_values(rowkey, {rule.unique_id: ''})
@classmethod
def get_already_performed(cls, thing):