fixed variable types

This commit is contained in:
Oscar Krause 2022-12-19 14:48:13 +01:00
parent 30256b7272
commit cdb7fe777e

View File

@ -21,8 +21,8 @@ app = FastAPI()
LEASE_EXPIRE_DELTA = relativedelta(minutes=15) # days=90
DLS_URL = getenv('DLS_URL', 'localhost')
DLS_PORT = getenv('DLS_PORT', 443)
DLS_URL = str(getenv('DLS_URL', 'localhost'))
DLS_PORT = int(getenv('DLS_PORT', '443'))
SITE_KEY_XID = getenv('SITE_KEY_XID', '00000000-0000-0000-0000-000000000000')
INSTANCE_KEY_RSA = load_key(join(dirname(__file__), 'cert/instance.private.pem'))
INSTANCE_KEY_PUB = load_key(join(dirname(__file__), 'cert/instance.public.pem'))