From 4fcd07310000d6f5e0e7ca4362f8d6b66b46dff2 Mon Sep 17 00:00:00 2001 From: Ian Roquebert <72234714+gzpcho@users.noreply.github.com> Date: Fri, 9 Feb 2024 11:23:07 -0600 Subject: [PATCH] Update deploy-board/deploy_board/webapp/agent_report.py Co-authored-by: Tyler Ouyang --- deploy-board/deploy_board/webapp/agent_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy-board/deploy_board/webapp/agent_report.py b/deploy-board/deploy_board/webapp/agent_report.py index 240fd9421d..1f3e582f5c 100644 --- a/deploy-board/deploy_board/webapp/agent_report.py +++ b/deploy-board/deploy_board/webapp/agent_report.py @@ -116,7 +116,7 @@ def addToEnvReport(request, deployStats, agent, env): if agent_ec2_tags and agent_ec2_tags.get("service_mapping") == "shame": isShamed = True - return AgentStatistics(agent=agent, isCurrent=isCurrent, isStale=isStale, isShamed=isShamed) + return AgentStatistics(agent, isCurrent, isStale, isShamed) def _compare_agent_status(agentStats1, agentStats2):