Skip to content

Commit f4b6560

Browse files
Update config.ts
Signed-off-by: Nuwan Samarassinghe <nuwansamarasinghe100@gmail.com>
1 parent 6243d15 commit f4b6560

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

designer/server/config.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ export interface Config {
3131
authCookieName: string,
3232
sslKey: string,
3333
sslCert: string,
34-
sentryDsn: string,
35-
sentryTracesSampleRate: number,
3634
}
3735

3836
// server-side storage expiration - defaults to 20 minutes
@@ -67,8 +65,6 @@ const schema = joi.object({
6765
authCookieName: joi.string().optional(),
6866
sslKey: joi.string().optional(),
6967
sslCert: joi.string().optional(),
70-
sentryDsn: joi.string().optional(),
71-
sentryTracesSampleRate: joi.number().optional(),
7268
});
7369

7470
// Build config
@@ -94,8 +90,6 @@ const config = {
9490
authCookieName: process.env.AUTH_COOKIE_NAME,
9591
sslKey: process.env.SSL_KEY,
9692
sslCert: process.env.SSL_CERT,
97-
sentryDsn: process.env.SENTRY_DDSN,
98-
sentryTracesSampleRate: process.env.SENTRY_TRACE_SAMPLE_RATE,
9993
};
10094

10195
// Validate config

0 commit comments

Comments
 (0)