diff --git a/apps/tests/aws-runtime/test/env.ts b/apps/tests/aws-runtime/test/env.ts index af4e4efc..7f11af04 100644 --- a/apps/tests/aws-runtime/test/env.ts +++ b/apps/tests/aws-runtime/test/env.ts @@ -9,8 +9,6 @@ const outputs = ? JSON.parse(fs.readFileSync(path.resolve(outputsFile)).toString("utf-8")) : undefined; -console.log(path.resolve(outputsFile), outputsFile, outputs); - export const awsRegion = () => process.env.AWS_REGION ?? "us-east-1"; export const serviceUrl = () => outputs?.["eventual-tests"]?.serviceUrl ?? "http://localhost:3111"; diff --git a/packages/@eventual/aws-cdk/src/command-service.ts b/packages/@eventual/aws-cdk/src/command-service.ts index 495c20c9..50449e10 100644 --- a/packages/@eventual/aws-cdk/src/command-service.ts +++ b/packages/@eventual/aws-cdk/src/command-service.ts @@ -185,6 +185,7 @@ export class CommandService { this.props.build.system.eventualService.systemCommandHandler, functionNameSuffix: "system-command", serviceName: this.props.serviceName, + // the logs command is the outlier here. Was often timing out at 3 seconds. defaults: { timeout: Duration.seconds(30) }, } );