File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " temporal-rest-executor"
3- version = " 0.3.0 "
3+ version = " 0.3.1 "
44description = " "
55authors = [
" Your Name <[email protected] >" ]
66readme = " README.md"
Original file line number Diff line number Diff line change 66
77UVICORN_BIND_ADDR : str = getenv ("UVICORN_BIND_ADDR" , "0.0.0.0" )
88
9- UVICORN_BIND_PORT : int = getenv ("UVICORN_BIND_PORT" , 8000 )
9+ UVICORN_BIND_PORT : int = int ( getenv ("UVICORN_BIND_PORT" , 8000 ) )
1010
1111TEMPORAL_ENDPOINT : str = getenv ("TEMPORAL_ENDPOINT" , "localhost:7233" )
1212
3636 "PROMETHEUS_ENDPOINT_ENABLED" , True
3737)
3838
39- PROMETHEUS_ENDPOINT_PORT : str = getenv (
39+ PROMETHEUS_ENDPOINT_PORT : int = int ( getenv (
4040 "PROMETHEUS_ENDPOINT_PORT" , "9000"
41- )
41+ ))
Original file line number Diff line number Diff line change 2020
2121
2222__title__ : str = SERVICE_NAME
23- __version__ : str = "0.3.0 "
23+ __version__ : str = "0.3.1 "
2424
2525
2626console = Console ()
You can’t perform that action at this time.
0 commit comments