chore: Resolve startup warnings (#7335)

This commit is contained in:
Michael Genson
2026-03-27 09:54:46 -05:00
committed by GitHub
parent b1a846fe62
commit 63c549ae5c
3 changed files with 4 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
# A generic, single database configuration. # A generic, single database configuration.
[alembic] [alembic]
path_separator=os
# path to migration scripts # path to migration scripts
script_location = %(here)s script_location = %(here)s

View File

@@ -177,6 +177,7 @@ def main():
log_config=None, log_config=None,
workers=1, workers=1,
forwarded_allow_ips="*", forwarded_allow_ips="*",
ws="websockets-sansio",
) )

View File

@@ -15,6 +15,7 @@ def main():
forwarded_allow_ips=settings.HOST_IP, forwarded_allow_ips=settings.HOST_IP,
ssl_keyfile=settings.TLS_PRIVATE_KEY_PATH, ssl_keyfile=settings.TLS_PRIVATE_KEY_PATH,
ssl_certfile=settings.TLS_CERTIFICATE_PATH, ssl_certfile=settings.TLS_CERTIFICATE_PATH,
ws="websockets-sansio",
) )