File tree Expand file tree Collapse file tree 7 files changed +7
-11
lines changed Expand file tree Collapse file tree 7 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ python = "^3.9"
1111psutil = { version = " ^5.6" }
1212fastapi = { version = " ^0.65.2" }
1313uvicorn = { version = " ^0.11.7" }
14- pyctuator = { version = " ^1.1 .0" }
14+ pyctuator = { version = " ^1.2 .0" }
1515sqlalchemy = { version = " ^1.3" }
1616PyMySQL = { version = " ^0.9.3" }
1717cryptography = { version = " ^2.8" }
Original file line number Diff line number Diff line change @@ -36,14 +36,10 @@ def read_root():
3636 app_description = app .description ,
3737)
3838
39- # Keep the console clear - configure uvicorn (FastAPI's WSGI web app) not to log the detail of every incoming request
40- uvicorn_logger = logging .getLogger ("uvicorn" )
41- uvicorn_logger .setLevel (logging .WARNING )
42-
4339server = Server (config = (Config (
4440 app = app ,
4541 loop = "asyncio" ,
4642 host = "0.0.0.0" ,
47- logger = uvicorn_logger ,
43+ log_level = logging . WARNING ,
4844)))
4945server .run ()
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ python = "^3.9"
1111psutil = { version = " ^5.6" }
1212fastapi = { version = " ^0.82.0" }
1313uvicorn = { version = " ^0.18.2" }
14- pyctuator = { version = " ^1.1 .0" }
14+ pyctuator = { version = " ^1.2 .0" }
1515
1616[build-system ]
1717requires = [" poetry>=0.12" ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ authors = [
1010python = " ^3.9"
1111psutil = { version = " ^5.6" }
1212flask = { version = " ^2.2.2" }
13- pyctuator = { version = " ^1.1 .0" }
13+ pyctuator = { version = " ^1.2 .0" }
1414
1515[build-system ]
1616requires = [" poetry>=0.12" ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ authors = [
1010python = " ^3.9"
1111psutil = { version = " ^5.6" }
1212aiohttp = { version = " ^3.6.2" }
13- pyctuator = { version = " ^1.1 .0" }
13+ pyctuator = { version = " ^1.2 .0" }
1414
1515[build-system ]
1616requires = [" poetry>=0.12" ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ authors = [
1010python = " ^3.9"
1111psutil = { version = " ^5.6" }
1212tornado = { version = " ^6.0.4" }
13- pyctuator = { version = " ^1.1 .0" }
13+ pyctuator = { version = " ^1.2 .0" }
1414
1515[build-system ]
1616requires = [" poetry>=0.12" ]
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " pyctuator"
3- version = " 1.1 .0"
3+ version = " 1.2 .0"
44description = " A Python implementation of the Spring Actuator API for popular web frameworks"
55authors = [
66 " Michael Yakobi <[email protected] >" ,
You can’t perform that action at this time.
0 commit comments