-
Good day, Unleash team. I deployed the application to k8s (5.6.5 version) with environment variables which include Email Service. The log unleash-server start: When I created a new user in unleash from UI interface with notification from email. I got an error and traceback from unleash-server. The user was created but notification about it was not delivered. Of course, I has already checked network connectivity and authorization to email server by command line. The log unleash-server traceback: Could you provide me information about it? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi @tipmg, thanks for reaching out! Looking at the error you shared, it seems the input is expected to be a valid URL, including a protocol: Can you please try again while including the protocol? In this case, it might look something like: Let us know if this helps. Thank you! |
Beta Was this translation helpful? Give feedback.
-
So, there are two error messages here, one is complaining about not being able to construct a valid URL, the other is complaining about SSL version numbers. For the first one, ensure your UNLEASH_URL is a valid URL, that is, don't exclude the protocol prefix
UNLEASH_URL should be For the second error, I inadvertently posted it as a reply to Nuno's response. The |
Beta Was this translation helpful? Give feedback.
So, there are two error messages here, one is complaining about not being able to construct a valid URL, the other is complaining about SSL version numbers.
For the first one, ensure your UNLEASH_URL is a valid URL, that is, don't exclude the protocol prefix
http://
https://
when writing it out. If you host it on a subpath, remember to include the entire URL to reach your server in the UNLEASH_URL environment variable, and set BASE_PATH_URI to the suffix after your server name. In the error log aboveUNLEASH_URL should be
https://unleash.dev1.amediateka.tech
and BASE_PATH_URI can be empty, since it seems like you use subdomains r…