File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
bin/upgrade/25.03/scripts Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 44- [ core] Fix mongo connection url parsing
55- [ crashes] Fix free session and free user calculation
66
7+ Enterprise Fixes:
8+ - [ crash_symbolication] Remove auto symbolication setting
9+
710## Version 25.03.10
811Enterprise Fixes:
912- [ okta] Fix body parser middleware version mismatch causing OKTA authentication break
Original file line number Diff line number Diff line change 1+ const pluginManager = require ( '../../../../plugins/pluginManager.js' ) ;
2+
3+ console . log ( 'Removing auto symbolication setting' ) ;
4+
5+ pluginManager . dbConnection ( ) . then ( async ( db ) => {
6+ try {
7+ await db . collection ( 'plugins' ) . updateOne ( { _id : 'plugins' } , { $unset : { 'crashes.automatic_symbolication' : '' } } ) ;
8+ console . log ( 'Auto symbolication setting removed' ) ;
9+ }
10+ catch ( err ) {
11+ console . error ( 'Error while removing auto symbolication setting' , err ) ;
12+ }
13+
14+ db . close ( ) ;
15+ } ) ;
You can’t perform that action at this time.
0 commit comments