Commit 9a8e682f by Calen Pennington

fixup! Pass playbook_timestamp into Formatters directly, rather than pulling it…

fixup! Pass playbook_timestamp into Formatters directly, rather than pulling it from callback_module
parent f7eef773
......@@ -41,8 +41,8 @@ class Formatter(object):
class DatadogFormatter(Formatter):
def __init__(self, callback_module):
super(DatadogFormatter, self).__init__(callback_module)
def __init__(self, callback_module, playbook_timestamp):
super(DatadogFormatter, self).__init__(callback_module, playbook_timestamp)
self.datadog_api_key = os.getenv('DATADOG_API_KEY')
self.datadog_api_initialized = False
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment