File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ async def security_lifespan(context: ContextRepo):
8484 description = "Data.Rentgen is a nextgen DataLineage service" ,
8585 version = data_rentgen .__version__ ,
8686 logger = logger ,
87- ).as_asgi (asgi_routes = [("/internal/healthcheck/liveness " , liveness )])
87+ ).as_asgi (asgi_routes = [("/monitoring/ping " , liveness )])
8888
8989
9090def get_application ():
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ class PersonalTokenSettings(BaseModel):
1818 DATA_RENTGEN__AUTH__PERSONAL_TOKENS__ENABLED=True
1919 DATA_RENTGEN__AUTH__PERSONAL_TOKENS__SECRET_KEY=somesecret
2020 DATA_RENTGEN__AUTH__PERSONAL_TOKENS__SECURITY_ALGORITHM=HS256
21- DATA_RENTGEN__AUTH__PERSONAL_TOKENS__MAX_DURATION_DAYS=360
21+ DATA_RENTGEN__AUTH__PERSONAL_TOKENS__MAX_DURATION_DAYS=366
2222 """
2323
2424 enabled : bool = Field (
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ services:
125125 ports :
126126 - 8001:8001
127127 healthcheck :
128- test : [CMD-SHELL, curl -f http://localhost:8001/internal/healthcheck/liveness ]
128+ test : [CMD-SHELL, curl -f http://localhost:8001/monitoring/ping ]
129129 interval : 30s
130130 timeout : 5s
131131 retries : 3
You can’t perform that action at this time.
0 commit comments