1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-06 02:41:11 +01:00

fw/output: update internal state on write_config()

Update the internal _combined_config object with the one that
has been written to ensure that the serialized and run time states are
the same.
This commit is contained in:
Sergei Trofimov 2018-07-09 15:34:26 +01:00 committed by Marc Bonnici
parent c410d2e1a1
commit fd1dd789bf

View File

@ -269,6 +269,7 @@ class RunOutput(Output):
write_pod(self.state.to_pod(), self.statefile)
def write_config(self, config):
self._combined_config = config
write_pod(config.to_pod(), self.configfile)
def read_config(self):