Skip to content

Commit

Permalink
Remove Loggly token
Browse files Browse the repository at this point in the history
  • Loading branch information
codykaup committed Sep 30, 2024
1 parent 7ae9a40 commit 7a53c80
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions node-src/lib/getEnv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export interface Env {
ENVIRONMENT_WHITELIST: RegExp[];
HTTP_PROXY: string;
HTTPS_PROXY: string;
LOGGLY_CUSTOMER_TOKEN: string;
STORYBOOK_BUILD_TIMEOUT: number;
STORYBOOK_CLI_FLAGS_BY_VERSION: typeof STORYBOOK_CLI_FLAGS_BY_VERSION;
STORYBOOK_VERIFY_TIMEOUT: number;
Expand All @@ -33,7 +32,6 @@ const {
CHROMATIC_UPGRADE_TIMEOUT = String(60 * 60 * 1000),
HTTP_PROXY = process.env.http_proxy,
HTTPS_PROXY = process.env.https_proxy,
LOGGLY_CUSTOMER_TOKEN = 'b5e26204-cdc5-4c78-a9cc-c69eb7fabad3',
STORYBOOK_BUILD_TIMEOUT = String(10 * 60 * 1000),
STORYBOOK_VERIFY_TIMEOUT = String(3 * 60 * 1000),
STORYBOOK_NODE_ENV = 'production',
Expand Down Expand Up @@ -71,7 +69,6 @@ export default function getEnv(): Env {
ENVIRONMENT_WHITELIST,
HTTP_PROXY,
HTTPS_PROXY,
LOGGLY_CUSTOMER_TOKEN,
STORYBOOK_BUILD_TIMEOUT: Number.parseInt(STORYBOOK_BUILD_TIMEOUT, 10),
STORYBOOK_CLI_FLAGS_BY_VERSION,
STORYBOOK_VERIFY_TIMEOUT: Number.parseInt(STORYBOOK_VERIFY_TIMEOUT, 10),
Expand Down

0 comments on commit 7a53c80

Please sign in to comment.