You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Generate recommendations first (async operation)
63
63
// Note: This is a fire-and-forget operation. The generation is asynchronous,
64
64
// so newly generated recommendations will be available in the next scrape cycle.
65
65
_, err=client.Generate(m.Context(), nil)
66
66
iferr!=nil {
67
-
logger.Warnf("failed to generate recommendations for subscription %s: %v", to.StringLower(subscription.SubscriptionID), err)
67
+
logger.Warn("failed to generate recommendations for subscription", slog.String("subscriptionID", to.StringLower(subscription.SubscriptionID)), slog.Any("error", err))
0 commit comments