From aa65b1efc6bc288fb74ad250b72c6aa19be376ae Mon Sep 17 00:00:00 2001 From: Amogh Rathore Date: Fri, 9 Sep 2022 17:09:02 +0000 Subject: [PATCH] Change JSON key for VPC ID in TMDE v4 TaskResponse from VpcId to VPCID for consistency with existing keys. --- agent/handlers/v4/response.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/handlers/v4/response.go b/agent/handlers/v4/response.go index 5af2afab781..6c5398f9884 100644 --- a/agent/handlers/v4/response.go +++ b/agent/handlers/v4/response.go @@ -30,7 +30,7 @@ import ( type TaskResponse struct { *v2.TaskResponse Containers []ContainerResponse `json:"Containers,omitempty"` - VPCID string `json:"VpcId,omitempty"` + VPCID string `json:"VPCID,omitempty"` ServiceName string `json:"ServiceName,omitempty"` }