ssl patch

This commit is contained in:
cheykrym 2025-07-11 00:34:34 +03:00
parent 5611cdacda
commit a5dbefe757
2 changed files with 3 additions and 3 deletions

View File

@ -22,8 +22,8 @@ async def get_profile_by_user_id(user_id: UUID, token: str) -> dict:
return response.json()
except httpx.RequestError as e:
raise HTTPException(status_code=status.HTTP_503_SERVICE_UNAVAILABLE, detail=f"profile_service unreachable: {str(e)}")
except httpx.RequestError:
raise HTTPException(status_code=status.HTTP_503_SERVICE_UNAVAILABLE, detail="Token service unavailable")
async def get_profiles_by_user_ids(user_ids: List[UUID], token: str, user_id: UUID) -> Dict[str, dict]:

View File

@ -1,6 +1,6 @@
[project]
name = "common-lib"
version = "0.0.13"
version = "0.0.14"
description = "Библиотека общих компонентов для микросервисов yobble"
authors = [{ name = "cheykrym", email = "you@example.com" }]
license = "MIT"