Revert "Merge pull request #53829 from saltstack/fix_stats_2019.2.1"

This reverts commit 5064027b9d, reversing
changes made to 971eda38ff.
This commit is contained in:
Daniel A. Wozniak 2019-07-15 10:00:06 -07:00
parent 5064027b9d
commit 4553ba770a
No known key found for this signature in database
GPG key ID: 166B9D2C06C82D61

View file

@ -1002,7 +1002,6 @@ class MWorker(salt.utils.process.SignalHandlingMultiprocessingProcess):
self.mkey = state['mkey']
self.key = state['key']
self.k_mtime = state['k_mtime']
self.stats = state['stats']
SMaster.secrets = state['secrets']
def __getstate__(self):
@ -1013,7 +1012,6 @@ class MWorker(salt.utils.process.SignalHandlingMultiprocessingProcess):
'key': self.key,
'k_mtime': self.k_mtime,
'secrets': SMaster.secrets,
'stats': self.stats,
'log_queue': self.log_queue,
'log_queue_level': self.log_queue_level
}