Skip to content

Commit f6c96e6

Browse files
fixes path import typo
1 parent 9b9953f commit f6c96e6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/settings/gunicorn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ def post_fork(server, worker): # pylint: disable=unused-argument
1010
service_version="1.2.0",
1111
deployment_environment="production",
1212
)
13-
from app.lib import ( # pylint: disable=import-outside-toplevel
14-
server as fastapi_server,
13+
from lib import ( # pylint: disable=import-outside-toplevel
14+
app as fastapi_server,
1515
)
1616

1717
FastAPIInstrumentor.instrument_app(fastapi_server)

0 commit comments

Comments
 (0)