diff --git a/volttron/platform/aip.py b/volttron/platform/aip.py index 272e339a65..ad2060f9b7 100644 --- a/volttron/platform/aip.py +++ b/volttron/platform/aip.py @@ -788,7 +788,7 @@ def agent_tag(self, agent_uuid): tag_file = os.path.join(self.install_dir, agent_uuid, 'TAG') with ignore_enoent, open(tag_file, 'r') as file: tag = file.readline(64) - cached_tag[agent_uuid] = tag + self.agent_uuid_tag_map[agent_uuid] = tag return tag def agent_version(self, agent_uuid):