From a59e7200307d0a28ef0af68dd6ab4950619c0b9f Mon Sep 17 00:00:00 2001 From: Andrew Rodgers Date: Tue, 23 Apr 2024 17:14:25 -0400 Subject: [PATCH] Fixes typo --- volttron/platform/aip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):