We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 429cb3d commit d6b8d8fCopy full SHA for d6b8d8f
pkg/insights/insightsreport/insightsreport.go
@@ -293,7 +293,9 @@ func (c *Controller) RetrieveReport() {
293
func (c *Controller) Run(ctx context.Context) {
294
c.StatusController.UpdateStatus(controllerstatus.Summary{Healthy: true})
295
klog.V(2).Info("Starting report retriever")
296
- klog.V(2).Infof("Initial config: %v", c.configurator.Config())
+ conf := c.configurator.Config()
297
+ klog.V(2).Infof("Insights analysis reports will be downloaded from the %s endpoint with a delay of %s",
298
+ conf.ReportEndpoint, conf.ReportPullingDelay)
299
for {
300
// always wait for new uploaded archive or insights-operator ends
301
select {
0 commit comments