Skip to content

Commit

Permalink
[BACKLOG-39783] - Implemented a PentahoSystemPublisher that allows ar…
Browse files Browse the repository at this point in the history
…bitrary events to be published to concerned subscribers
  • Loading branch information
wseyler committed Feb 8, 2024
1 parent 61a9f06 commit 23765fa
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,11 @@ public void contextInitialized( final ServletContextEvent event ) {
updateStatusMessages( initOk );
PeriodicStatusLogger.stop();
}
// This line signals to the scheduler that the system has initialized and that the scheduler can
// start processing jobs
PentahoSystemPublisher.getInstance().publish( PentahoSystemPublisher.START_UP_TOPIC, true );

this.showInitializationMessage( initOk, fullyQualifiedServerUrl );
PentahoSystemPublisher.getInstance().publish( PentahoSystemPublisher.START_UP_TOPIC, true );
}

private void updateStatusMessages( boolean initOk ) {
Expand Down

0 comments on commit 23765fa

Please sign in to comment.