Skip to content

Commit

Permalink
[NO-ISSUE] remove outdated and incorrect config map reference from er…
Browse files Browse the repository at this point in the history
…ror text
  • Loading branch information
gtully committed Aug 24, 2023
1 parent 62679f8 commit e908fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/activemqartemis_reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -2972,7 +2972,7 @@ func getConfigMappedBrokerProperties(cr *brokerv1beta1.ActiveMQArtemis, client r
resource := corev1.Secret{}
err := client.Get(context.TODO(), cmName, &resource)
if err != nil {
return nil, NewUnknownJolokiaError(errors.Wrap(err, "unable to retrieve mutable config map"))
return nil, NewUnknownJolokiaError(errors.Wrap(err, "unable to retrieve mutable properties resource"))
}
return newProjectionFromByteValues(resource.ObjectMeta, resource.Data), nil
}
Expand Down

0 comments on commit e908fb5

Please sign in to comment.