Skip to content

Commit

Permalink
Mfancher/docs (#946)
Browse files Browse the repository at this point in the history
* Remove unused packages

* Bug Fixes for left nav, constraints, and consumers

* updates

* Users Page and various docs updates

* adjustments
  • Loading branch information
FancMa01 authored Nov 15, 2024
1 parent b92ef7d commit f4310c3
Show file tree
Hide file tree
Showing 14 changed files with 167 additions and 1,073 deletions.
2 changes: 1 addition & 1 deletion Tombolo/.env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ CLIENT_SECRET=
REDIRECT_URI=

# Logging Configuration
NODE_LOG_LEVEL=http
NODE_LOG_LEVEL=info

# Integration Specific Configuration
9 changes: 7 additions & 2 deletions Tombolo/server/jobSchedular/job-scheduler.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ const {
startJobPunctualityMonitoring,
} = require("../jobSchedularMethods/jobMonitoring.js");

const {checkClusterReachability} = require("../jobSchedularMethods/checkClusterReachability.js");
const {
checkClusterReachability,
} = require("../jobSchedularMethods/checkClusterReachability.js");

class JobScheduler {
constructor() {
Expand Down Expand Up @@ -133,6 +135,9 @@ class JobScheduler {
await this.startIntermediateJobsMonitoring();
await this.startJobPunctualityMonitoring();
await this.checkClusterReachability();
logger.info("-----------------------------");
logger.info("Server is finished intializing, and is now running");
logger.info("-----------------------------");
})();
}

Expand Down Expand Up @@ -360,7 +365,7 @@ class JobScheduler {
return createOrbitMonitoringJob.call(this, { orbitMonitoring_id, cron });
}

checkClusterReachability(){
checkClusterReachability() {
return checkClusterReachability.call(this);
}
}
Expand Down
Loading

0 comments on commit f4310c3

Please sign in to comment.