Skip to content

Commit

Permalink
avoid license error during unit test runs
Browse files Browse the repository at this point in the history
  • Loading branch information
jertel committed Aug 27, 2024
1 parent 462b22d commit 4118840
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 4118840

Please sign in to comment.