Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
Initialize config.cascading in cluster_manager
Browse files Browse the repository at this point in the history
  • Loading branch information
schlypel authored Dec 6, 2023
1 parent c5229d6 commit aa1a8fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/cluster_manager/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ config.rabbit = config.rabbit || {};
config.rabbit.host = config.rabbit.host || 'localhost';
config.rabbit.port = config.rabbit.port || 5672;

config.cascading = config.cascading || {};
config.cascading.enabled = config.cascading.enabled || false;
config.cascading.url = config.cascading.url;
config.cascading.region = config.cascading.region;
Expand Down Expand Up @@ -121,4 +122,4 @@ process.on('exit', function () {

process.on('SIGUSR2', function() {
logger.reconfigure();
});
});

0 comments on commit aa1a8fe

Please sign in to comment.