Skip to content
This repository has been archived by the owner on Sep 20, 2022. It is now read-only.

Commit

Permalink
fixing incorrect console message (#624)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Peterson committed Aug 30, 2019
1 parent 5981aa1 commit 0e398ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handel/src/services/route53zone/index.ts
Expand Up @@ -93,7 +93,7 @@ export class Service implements ServiceDeployer {
const compiledTemplate = await getCompiledRoute53Template(ownServiceContext); const compiledTemplate = await getCompiledRoute53Template(ownServiceContext);
const stackTags = tagging.getTags(ownServiceContext); const stackTags = tagging.getTags(ownServiceContext);
const deployedStack = await deployPhase.deployCloudFormationStack(ownServiceContext, stackName, compiledTemplate, [], true, 30, stackTags); const deployedStack = await deployPhase.deployCloudFormationStack(ownServiceContext, stackName, compiledTemplate, [], true, 30, stackTags);
winston.info(`${SERVICE_NAME} - Finished deploying S3 bucket ${stackName}`); winston.info(`${SERVICE_NAME} - Finished deploying Route53 Zone ${stackName}`);
return getDeployContext(ownServiceContext, deployedStack); return getDeployContext(ownServiceContext, deployedStack);
} }


Expand Down

0 comments on commit 0e398ad

Please sign in to comment.