@timesnap mhex I think this error indicates that OpenSSL certificate verification failed on your machine after the upgrade. Azure speech services require DigiCert Global Root G2 certificate to be installed on the client.
See also Azure TLS Certificate Changes | Microsoft Docs
You might want to check the list of certificates before and after an upgrade and ensure the missing certificates are available after the upgrade. Depending on the platform you might have to check the corresponding path on your machine to verify the certificates.
The guidance in the referenced document should help to check if the required certs are available on your machine.
Check whether there's a
certs
subdirectory under OPENSSLDIR. In the example above, it would be/usr/lib/ssl/certs
.
- If the
/usr/lib/ssl/certs
exists, and if it contains many individual certificate files (with.crt
or.pem
extension), there's no need for further actions.- If OPENSSLDIR is something other than
/usr/lib/ssl
or there's a single certificate bundle file instead of multiple individual files, you need to set an appropriate SSL environment variable to indicate where the certificates can be found.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.