Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit e3f51f2

Browse files
committed
fix: Minor change to config
1 parent dcf3e8a commit e3f51f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def r5_authorization(cls, v: Optional[str], values: Dict[str, Any]) -> Any:
105105

106106
@validator("GOAT_ROUTING_URL", pre=True)
107107
def goat_routing_url(cls, v: Optional[str], values: Dict[str, Any]) -> Any:
108-
return "http://goat_routing:8000/api/v2/routing"
108+
return f'{values.get("GOAT_ROUTING_HOST")}:{values.get("GOAT_ROUTING_PORT")}/api/v2/routing'
109109

110110
GOAT_ROUTING_AUTHORIZATION: str = None
111111

0 commit comments

Comments
 (0)