Skip to content

Commit 0b83e45

Browse files
authored
Remove --payload parameter (#1507)
* Fix update-keys operation
1 parent bb7abcd commit 0b83e45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tooling/docs-assembler/Deploying/AwsCloudFrontKeyValueStoreProxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private string ProcessBatchUpdates(
109109
_ => string.Empty
110110
};
111111
var responseJson = CaptureMultiple(false, 1, "aws", "cloudfront-keyvaluestore", "update-keys", "--kvs-arn", kvsArn, "--if-match", eTag,
112-
$"--{operation.ToString().ToLowerInvariant()}", "--payload", payload);
112+
$"--{operation.ToString().ToLowerInvariant()}", payload);
113113
var updateResponse = JsonSerializer.Deserialize<UpdateKeysResponse>(string.Concat(responseJson), AwsCloudFrontKeyValueStoreJsonContext.Default.UpdateKeysResponse);
114114

115115
if (string.IsNullOrEmpty(updateResponse?.ETag))

0 commit comments

Comments
 (0)