We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77c4e5f commit b1a78f8Copy full SHA for b1a78f8
ab-testing/notification-lambda/src/run.ts
@@ -12,8 +12,6 @@
12
import type { CloudFormationCustomResourceEvent, Context } from "aws-lambda";
13
import { handler } from "./index.ts";
14
15
-const stage = process.env.STAGE ?? "CODE";
16
-
17
process.env.EMAIL_DOMAIN = `abtesting.code.dev-gutools.co.uk`;
18
19
// Create a mock CloudFormation event
@@ -51,7 +49,7 @@ const mockContext: Context = {
51
49
succeed: () => {},
52
50
};
53
54
-console.log(`Running lambda handler locally with STAGE=${stage}\n`);
+console.log(`Running lambda handler locally\n`);
55
console.log(`EMAIL_DOMAIN=${process.env.EMAIL_DOMAIN}\n`);
56
57
// Run the handler
0 commit comments