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

Loading…
Cancel
Save