Browse Source

[cli] remove reload keyword from uvicorn

Maxime Alves LIRMM@home 3 years ago
parent
commit
538984f78b
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      pyheatpump/cli.py

+ 1
- 2
pyheatpump/cli.py View File

@@ -50,8 +50,7 @@ def run(host, port):
50 50
     uvicorn.run('pyheatpump.app:application',
51 51
         host=host,
52 52
         port=int(port),
53
-        log_level=log_level,
54
-        reload=True)
53
+        log_level=log_level)
55 54
 
56 55
 
57 56
 @click.option('--type', '-t', default=None, multiple=True)

Loading…
Cancel
Save