From 8cbdcfc474ea10ec59d5a8b694d8a65296352d5e Mon Sep 17 00:00:00 2001 From: Ajay Raj Date: Mon, 6 Mar 2023 23:12:15 -0800 Subject: [PATCH] remove reload --- pyproject.toml | 2 +- vocode/telephony/inbound_call_server.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5ca8128..d448e7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vocode" -version = "0.1.23" +version = "0.1.24" description = "The all-in-one voice SDK" authors = ["Ajay Raj "] license = "MIT License" diff --git a/vocode/telephony/inbound_call_server.py b/vocode/telephony/inbound_call_server.py index 42aa8af..1ca082e 100644 --- a/vocode/telephony/inbound_call_server.py +++ b/vocode/telephony/inbound_call_server.py @@ -33,4 +33,4 @@ class InboundCallServer(): ) def run(self, host="localhost", port=3000): - uvicorn.run(self.app, host=host, port=port, reload=True) \ No newline at end of file + uvicorn.run(self.app, host=host, port=port) \ No newline at end of file