fix: remove sentry before migration
This commit is contained in:
parent
e7dd13cffa
commit
3c723bcba2
@ -249,12 +249,12 @@ async function initServer() {
|
||||
await prisma.setting.update({ where: { id: '0' }, data: { sentryDSN } })
|
||||
}
|
||||
// Initialize Sentry
|
||||
Sentry.init({
|
||||
dsn: sentryDSN,
|
||||
environment: isDev ? 'development' : 'production',
|
||||
release: version
|
||||
});
|
||||
console.log('[000] Sentry initialized...')
|
||||
// Sentry.init({
|
||||
// dsn: sentryDSN,
|
||||
// environment: isDev ? 'development' : 'production',
|
||||
// release: version
|
||||
// });
|
||||
// console.log('[000] Sentry initialized...')
|
||||
}
|
||||
} catch (error) {
|
||||
console.error(error)
|
||||
|
@ -84,12 +84,12 @@ export async function saveSettings(request: FastifyRequest<SaveSettings>, reply:
|
||||
await prisma.setting.update({ where: { id }, data: { minPort, maxPort } });
|
||||
}
|
||||
if (doNotTrack === false) {
|
||||
Sentry.init({
|
||||
dsn: sentryDSN,
|
||||
environment: isDev ? 'development' : 'production',
|
||||
release: version
|
||||
});
|
||||
console.log('Sentry initialized')
|
||||
// Sentry.init({
|
||||
// dsn: sentryDSN,
|
||||
// environment: isDev ? 'development' : 'production',
|
||||
// release: version
|
||||
// });
|
||||
// console.log('Sentry initialized')
|
||||
}
|
||||
return reply.code(201).send()
|
||||
} catch ({ status, message }) {
|
||||
|
@ -106,15 +106,15 @@
|
||||
if (teamId) $appSession.teamId = teamId;
|
||||
if (permission) $appSession.permission = permission;
|
||||
if (isAdmin) $appSession.isAdmin = isAdmin;
|
||||
if (settings?.doNotTrack === false) {
|
||||
Sentry.init({
|
||||
dsn: sentryDSN,
|
||||
environment: dev ? 'development' : 'production',
|
||||
integrations: [new BrowserTracing()],
|
||||
release: $appSession.version?.toString(),
|
||||
tracesSampleRate: 0.2
|
||||
});
|
||||
}
|
||||
// if (settings?.doNotTrack === false) {
|
||||
// Sentry.init({
|
||||
// dsn: sentryDSN,
|
||||
// environment: dev ? 'development' : 'production',
|
||||
// integrations: [new BrowserTracing()],
|
||||
// release: $appSession.version?.toString(),
|
||||
// tracesSampleRate: 0.2
|
||||
// });
|
||||
// }
|
||||
async function logout() {
|
||||
try {
|
||||
Cookies.remove('token');
|
||||
|
Loading…
Reference in New Issue
Block a user