Compare commits

..

2 Commits

Author SHA1 Message Date
VivianDee a3fcba00b4 [add]: Timeout 2026-04-10 10:39:49 +01:00
VivianDee 60b928221a Update 284be77cb54e_.py 2026-03-12 11:04:27 +01:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ class EventServiceIntegration:
logger.info(f"Health Check URL: {url}")
try:
response = httpx.get(url, timeout=EventServiceIntegration.TIMEOUT)
response = httpx.get(url, timeout=5.0)
logger.info(f"Health Check Response: {response.text}")
return response
except Exception as e:
+1 -1
View File
@@ -21,7 +21,7 @@ def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column(
"loan_repayment_schedules",
sa.Column("last_penal_date", sa.Float(), nullable=True),
sa.Column("last_penal_date", sa.DateTime(), nullable=True),
)
### end Alembic commands ###