use pillar.raw instead of pillar.data to prevent refreshes too often

This commit is contained in:
Thomas S Hatch 2013-03-10 15:11:22 -06:00
parent 23622bae0e
commit 5e8a0ec191

View File

@ -40,7 +40,7 @@ def returner(ret):
If an error occurs, log it to sentry
'''
def connect_sentry(message, result):
pillar_data = __salt__['pillar.data']()
pillar_data = __salt__['pillar.raw']()
sentry_data = {
'result': result,
'returned': ret,