X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fdash%2Fapp%2Fwsgi.py;h=ab18bbfbc7d3c68cbc153eaab4ccf9226063424f;hb=89b26f0793d19434731e2d97f02939494369c739;hp=c2832e29eba6162c207090fbb6e87822938709d8;hpb=a5e8351152d9513811e2d6d9eaaf2180e35e002d;p=csit.git diff --git a/resources/tools/dash/app/wsgi.py b/resources/tools/dash/app/wsgi.py index c2832e29eb..ab18bbfbc7 100644 --- a/resources/tools/dash/app/wsgi.py +++ b/resources/tools/dash/app/wsgi.py @@ -11,10 +11,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -from pal import init_app -app = init_app() +from pal import app + if __name__ == "__main__": # Main entry point. + app.debug = True app.run(host="0.0.0.0")