Changing backend service url.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos 2022-12-06 19:00:35 +01:00
parent 65cde9960f
commit c95dee84f2
No known key found for this signature in database
GPG Key ID: C0095B7870A4CCD3

View File

@ -192,7 +192,7 @@ def get_pki_data(url, data=None, method='GET'):
method = 'GET'
if (data is not None):
method = 'POST'
req = urllib.request.Request(f"https://www.henarejos.me/pico/pico-hsm/{url}/",
req = urllib.request.Request(f"https://www.picokeys.com/pico/pico-hsm/{url}/",
method=method,
data=data,
headers={'User-Agent': user_agent, })