Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
2b6d1338
Unverified
Commit
2b6d1338
authored
Jan 29, 2026
by
Julien Mancuso
Committed by
GitHub
Jan 29, 2026
Browse files
fix(operator): correct structured logging in restart status tracking (#5800)
Signed-off-by:
Julien Mancuso
<
jmancuso@nvidia.com
>
parent
c5bb8df6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
deploy/operator/internal/controller/dynamographdeployment_controller.go
...r/internal/controller/dynamographdeployment_controller.go
+2
-2
No files found.
deploy/operator/internal/controller/dynamographdeployment_controller.go
View file @
2b6d1338
...
@@ -331,12 +331,12 @@ func (r *DynamoGraphDeploymentReconciler) getUpdatedInProgressForGrove(ctx conte
...
@@ -331,12 +331,12 @@ func (r *DynamoGraphDeploymentReconciler) getUpdatedInProgressForGrove(ctx conte
}
}
if
pcs
.
Status
.
ObservedGeneration
==
nil
{
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
return
inProgress
}
}
if
*
pcs
.
Status
.
ObservedGeneration
<
pcs
.
Generation
{
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
,
"observed
Generation
"
,
*
pcs
.
Status
.
ObservedGeneration
)
return
inProgress
return
inProgress
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment