Skip to content

Commit 97db22f

Browse files
rwinieskiCopilot
andauthored
Update pkg/k8sutil/statefulset.go
Co-authored-by: Copilot <[email protected]>
1 parent 91d7958 commit 97db22f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/k8sutil/statefulset.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ func (oc *OperatorContext) ReconcileStatefulset() (reconcile.Result, error) {
8888
oc.Recorder.Event(oc.MarklogicGroup, "Normal", "StatefulSetCreated", "MarkLogic statefulSet created successfully")
8989
return result.Done().Output()
9090
}
91-
_, resultErr := result.Error(err).Output()
92-
if resultErr != nil {
93-
logger.Error(resultErr, "Failed to process result error")
91+
_, outputErr := result.Error(err).Output()
92+
if outputErr != nil {
93+
logger.Error(outputErr, "Failed to process result error")
9494
}
9595
}
9696
if err != nil {

0 commit comments

Comments
 (0)