davsclaus commented on code in PR #14195:
URL: https://github.com/apache/camel/pull/14195#discussion_r1606572632
##########
components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/properties/SecretPropertiesFunction.java:
##########
@@ -55,7 +55,13 @@ String lookup(String name, String key, String defaultValue) {
if (answer != null) {
byte[] data = Base64.getDecoder().decode(answer);
if (data != null) {
- answer = new String(data);
+ if (binaryContent) {
+ if (binaryContent) {
Review Comment:
this is double
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]