Skip to content

Commit

Permalink
💚 fix: ci lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gowrizrh committed May 8, 2024
1 parent 1038c12 commit ae5dfa8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/graphql-mesh-server/lib/fargate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,8 @@ export class MeshService extends Construct {
const fargateService =
new ecsPatterns.ApplicationLoadBalancedFargateService(this, `fargate`, {
cluster,
serviceName: props.serviceName !== undefined ? props.serviceName : undefined,
serviceName:
props.serviceName !== undefined ? props.serviceName : undefined,
certificate,
enableExecuteCommand: true,
cpu: props.cpu || 512, // 0.5 vCPU
Expand Down

0 comments on commit ae5dfa8

Please sign in to comment.