I have a camel route that uses the ssh component provided by camel through the dependency import via implementation("org.apache.camel:camel-ssh")
, i think this basically pacakges up the apache sshd client. So, what I was wondering was how to remove this error from popping up every time the camel route is ran:
2021-08-16 10:20:37.075 WARN --- [] org.apache.sshd.client.keyverifier.AcceptAllServerKeyVerifier : Server at /XX.XXX.XXX.XX:22 presented unverified EC key: SHA256:XX/XXXXXXX/XXXXXXXXXXXXXXX
2021-08-16 10:20:37.286 WARN --- [] org.apache.sshd.client.session.ClientConnectionService : globalRequest(ClientConnectionService[ClientSessionImpl[user-acc@/XX.XXX.XXX.XX:22]])[hostkeys-00@openssh.com, want-reply=false] failed (SshException) to process: EdDSA provider not supported
it connects all fine, however, it just comes up with these warnings which i'd like to remove if possible.
Cheers, Harrison