corona-warn-app / cwa-quick-test-backend

Apache License 2.0
13 stars 8 forks source link

fix: SERVER_SSL_ENABLED_PROTOCOLS warning #111

Closed ascheibal closed 2 years ago

ascheibal commented 3 years ago

suppress warning during container startup:

WARN main o.a.t.u.n.SSLHostConfig[1]: The protocol [TLSv1.3] was added to the list of protocols on the SSLHostConfig named [_default_]. Check if a +/- prefix is missing. This is due to a notation bug server configuration in application.yaml

substitute

 enabled-protocols: TLSv1.2,TLSv1.3

with

 enabled-protocols: TLSv1.2+TLSv1.3

This seems to affect all TSI components, but has no opperational effect.