File tree 7 files changed +7
-11
lines changed
7 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ python = "^3.9"
11
11
psutil = { version = " ^5.6" }
12
12
fastapi = { version = " ^0.65.2" }
13
13
uvicorn = { version = " ^0.11.7" }
14
- pyctuator = { version = " ^1.1 .0" }
14
+ pyctuator = { version = " ^1.2 .0" }
15
15
sqlalchemy = { version = " ^1.3" }
16
16
PyMySQL = { version = " ^0.9.3" }
17
17
cryptography = { version = " ^2.8" }
Original file line number Diff line number Diff line change @@ -36,14 +36,10 @@ def read_root():
36
36
app_description = app .description ,
37
37
)
38
38
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
-
43
39
server = Server (config = (Config (
44
40
app = app ,
45
41
loop = "asyncio" ,
46
42
host = "0.0.0.0" ,
47
- logger = uvicorn_logger ,
43
+ log_level = logging . WARNING ,
48
44
)))
49
45
server .run ()
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ python = "^3.9"
11
11
psutil = { version = " ^5.6" }
12
12
fastapi = { version = " ^0.82.0" }
13
13
uvicorn = { version = " ^0.18.2" }
14
- pyctuator = { version = " ^1.1 .0" }
14
+ pyctuator = { version = " ^1.2 .0" }
15
15
16
16
[build-system ]
17
17
requires = [" poetry>=0.12" ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ authors = [
10
10
python = " ^3.9"
11
11
psutil = { version = " ^5.6" }
12
12
flask = { version = " ^2.2.2" }
13
- pyctuator = { version = " ^1.1 .0" }
13
+ pyctuator = { version = " ^1.2 .0" }
14
14
15
15
[build-system ]
16
16
requires = [" poetry>=0.12" ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ authors = [
10
10
python = " ^3.9"
11
11
psutil = { version = " ^5.6" }
12
12
aiohttp = { version = " ^3.6.2" }
13
- pyctuator = { version = " ^1.1 .0" }
13
+ pyctuator = { version = " ^1.2 .0" }
14
14
15
15
[build-system ]
16
16
requires = [" poetry>=0.12" ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ authors = [
10
10
python = " ^3.9"
11
11
psutil = { version = " ^5.6" }
12
12
tornado = { version = " ^6.0.4" }
13
- pyctuator = { version = " ^1.1 .0" }
13
+ pyctuator = { version = " ^1.2 .0" }
14
14
15
15
[build-system ]
16
16
requires = [" poetry>=0.12" ]
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " pyctuator"
3
- version = " 1.1 .0"
3
+ version = " 1.2 .0"
4
4
description = " A Python implementation of the Spring Actuator API for popular web frameworks"
5
5
authors = [
6
6
" Michael Yakobi <michael.yakobi@solaredge.com>" ,
You can’t perform that action at this time.
0 commit comments