From 2e2d65482f396216f4ff2d3c30bf165146815e2d Mon Sep 17 00:00:00 2001 From: Youjin Phea Date: Tue, 30 Mar 2021 19:52:52 +1300 Subject: [PATCH] fix: #1191 --- service/apigatewaymanagementapi/serializers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/apigatewaymanagementapi/serializers.go b/service/apigatewaymanagementapi/serializers.go index 518d7f1083f..8fee7be1fa7 100644 --- a/service/apigatewaymanagementapi/serializers.go +++ b/service/apigatewaymanagementapi/serializers.go @@ -97,7 +97,7 @@ func (m *awsRestjson1_serializeOpGetConnection) HandleSerialize(ctx context.Cont } opPath, opQuery := httpbinding.SplitURI("/@connections/{ConnectionId}") - request.URL.Path = opPath + request.URL.Path = request.URL.Path + opPath if len(request.URL.RawQuery) > 0 { request.URL.RawQuery = "&" + opQuery } else {