Skip to content
Snippets Groups Projects
Commit 50290cf0 authored by Hazelnoot's avatar Hazelnoot
Browse files

merge: Add Release version to Sentry logging (!834)

View MR for information: TransFem-org/Sharkey!834



Approved-by: default avatardakkar <dakkar@thenautilus.net>
Approved-by: default avatarHazelnoot <acomputerdog@gmail.com>
parents d14f0b14 903b2be1
No related branches found
No related tags found
No related merge requests found
......@@ -90,6 +90,9 @@ export async function masterMain() {
maxBreadcrumbs: 0,
// Set release version
release: "Sharkey@" + meta.version,
...config.sentryForBackend.options,
});
}
......
......@@ -9,6 +9,12 @@ import { nodeProfilingIntegration } from '@sentry/profiling-node';
import { envOption } from '@/env.js';
import { loadConfig } from '@/config.js';
import { jobQueue, server } from './common.js';
import { fileURLToPath } from 'node:url';
import { dirname } from 'node:path';
import * as fs from 'node:fs';
const _filename = fileURLToPath(import.meta.url);
const _dirname = dirname(_filename);
const meta = JSON.parse(fs.readFileSync(`${_dirname}/../../../../built/meta.json`, 'utf-8'));
/**
* Init worker process
......@@ -30,6 +36,9 @@ export async function workerMain() {
maxBreadcrumbs: 0,
// Set release version
release: "Sharkey@" + meta.version,
...config.sentryForBackend.options,
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment