Skip to content

Commit

Permalink
Added further cartridge processing (in subdirectories)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lomilar committed Oct 5, 2023
1 parent 7f7a9c0 commit 2c52084
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,9 @@ skyrepoMigrate(function() {
glob.sync( './src/main/server/cartridge/*.js' ).forEach( function( file ) {
require( path.resolve( file ) );
});
glob.sync( './src/main/server/cartridge/**/*.js' ).forEach( function( file ) {
require( path.resolve( file ) );
});
global.auditLogger.report(global.auditLogger.LogCategory.SYSTEM, global.auditLogger.Severity.INFO, 'CassFipsEnabled', `FIPS Enabled: ${require('crypto').getFips()}`);
};
if (envHttps) {
Expand Down

0 comments on commit 2c52084

Please sign in to comment.