Agent: Get only the config from the get_config() response

This commit is contained in:
Mike Salvatore 2021-12-15 10:11:32 -05:00
parent 0f149f7eee
commit a051759764
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class AutomatedMaster(IMaster):
return (not self._stop.is_set()) and self._simulation_thread.is_alive() return (not self._stop.is_set()) and self._simulation_thread.is_alive()
def _run_simulation(self): def _run_simulation(self):
config = self._control_channel.get_config() config = self._control_channel.get_config()["config"]
system_info_collector_thread = create_daemon_thread( system_info_collector_thread = create_daemon_thread(
target=self._run_plugins, target=self._run_plugins,