"...git@developer.sourcefind.cn:2222/OpenDAS/vllm_cscc.git" did not exist on "7ea6cb28b260c4b8aeeaf103a47efc7fd5f97982"
Unverified Commit 2b6d1338 authored by Julien Mancuso's avatar Julien Mancuso Committed by GitHub
Browse files

fix(operator): correct structured logging in restart status tracking (#5800)


Signed-off-by: default avatarJulien Mancuso <jmancuso@nvidia.com>
parent c5bb8df6
......@@ -331,12 +331,12 @@ func (r *DynamoGraphDeploymentReconciler) getUpdatedInProgressForGrove(ctx conte
}
if pcs.Status.ObservedGeneration == nil {
logger.Info("PodCliqueSet %s observedGeneration is nil", dgd.Name)
logger.Info("PodCliqueSet observedGeneration is nil", "name", dgd.Name)
return inProgress
}
if *pcs.Status.ObservedGeneration < pcs.Generation {
logger.Info("PodCliqueSet %s not yet reconciled: generation=%d, observedGeneration=%d", dgd.Name, pcs.Generation, *pcs.Status.ObservedGeneration)
logger.Info("PodCliqueSet not yet reconciled", "name", dgd.Name, "generation", pcs.Generation, "observedGeneration", *pcs.Status.ObservedGeneration)
return inProgress
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment