Skip to content

Commit a2742a6

Browse files
fix: fix metric agent for tracking CLI usage (#2024)
* fixes based on PR comments * fix: fix async push * fix: fix metric agent for tracking CLI usage
1 parent 6d7c341 commit a2742a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/amplify-provider-awscloudformation/lib/push-resources.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ function updateCloudFormationNestedStack(
312312
const jsonString = JSON.stringify(nestedStack, null, '\t');
313313
context.filesystem.write(nestedStackFilepath, jsonString);
314314

315-
return new Cloudformation(context, undefined, userAgentAction)
315+
return new Cloudformation(context, userAgentAction)
316316
.then(cfnItem => cfnItem.updateResourceStack(
317317
path.normalize(path.join(backEndDir, providerName)),
318318
nestedStackFileName,

0 commit comments

Comments
 (0)