From 3d7b771ae1b76c81fd51ae3e66ae8c4c0490872a Mon Sep 17 00:00:00 2001 From: "Bernat, Anastasia" Date: Mon, 7 Oct 2024 16:20:21 -0700 Subject: [PATCH] Deployment test 2. --- dash_app/layout.py | 1 - lambda_function.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/dash_app/layout.py b/dash_app/layout.py index 5175acc..f34916d 100644 --- a/dash_app/layout.py +++ b/dash_app/layout.py @@ -215,7 +215,6 @@ def tabs_card(): children=[ html.Br(), - # html.Div(id="map-select-container", # className="select-container", # children=[ diff --git a/lambda_function.py b/lambda_function.py index 6ee8103..9e3acee 100644 --- a/lambda_function.py +++ b/lambda_function.py @@ -17,8 +17,8 @@ def get_wsgi_handler(): _type_: lambda handler that is wsgi compatible and backed by the Dash application """ return make_lambda_handler( - # wsgi_app=create_app().server, - wsgi_app=app.server, + wsgi_app=create_app().server, + # wsgi_app=app.server, binary_support=True, )