qfix: Remove sentry on server (#9597)

This commit is contained in:
Andrey Sobolev
2025-07-24 21:14:20 +07:00
committed by GitHub
parent a8c3788d4e
commit 790595a26c
23 changed files with 175 additions and 165 deletions
+1 -1
View File
@@ -17,6 +17,7 @@ import { start } from './server'
setMetadata(serverToken.metadata.Secret, config.ServerSecret)
setMetadata(serverToken.metadata.Service, 'github')
configureAnalytics('github', process.env.VERSION ?? '0.7.0')
const metricsContext = initStatisticsContext('github', {
factory: () =>
createOpenTelemetryMetricsContext(
@@ -31,7 +32,6 @@ const metricsContext = initStatisticsContext('github', {
)
})
configureAnalytics(config.SentryDSN, config)
Analytics.setTag('application', 'github-service')
let doOnClose: () => Promise<void> = async () => {}