Skip to content

Commit

Permalink
Merge pull request #623 from Security-Onion-Solutions/jertel/an2
Browse files Browse the repository at this point in the history
avoid license error during unit test runs
  • Loading branch information
jertel authored Aug 27, 2024
2 parents aa1f677 + 4118840 commit e8a8909
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions licensing/license_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,10 @@ func startEffectiveMonitor() {
}

func startPillarMonitor() {
if manager == nil {
log.Error("Unable to start pillar monitor due to uninitialized manager")
return
}
log.Info("Starting pillar monitor")

contents := `
Expand Down

0 comments on commit e8a8909

Please sign in to comment.