Skip to content

Commit

Permalink
fix: support correct platform rewrite when specifying a base url (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
langchain-infra authored Jan 28, 2025
1 parent e87d01f commit b054d83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/langsmith/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ maintainers:
email: [email protected]
description: Helm chart to deploy the langsmith application and all services it depends on.
type: application
version: 0.9.2
version: 0.9.3
appVersion: "0.9.7"
2 changes: 1 addition & 1 deletion charts/langsmith/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# langsmith

![Version: 0.9.2](https://img.shields.io/badge/Version-0.9.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.9.7](https://img.shields.io/badge/AppVersion-0.9.7-informational?style=flat-square)
![Version: 0.9.3](https://img.shields.io/badge/Version-0.9.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.9.7](https://img.shields.io/badge/AppVersion-0.9.7-informational?style=flat-square)

Helm chart to deploy the langsmith application and all services it depends on.

Expand Down
2 changes: 1 addition & 1 deletion charts/langsmith/templates/frontend/config-map.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ data:
# Platform Backend Routes
location ~ /{{ .Values.ingress.subdomain }}/api/v1/platform/ {
rewrite /{{ .Values.ingress.subdomain }}/api/v1/platform/(.*) /platform/$1 break;
rewrite /{{ .Values.ingress.subdomain }}/api/v1/platform/(.*) /v1/platform/$1 break;
proxy_set_header Connection '';
proxy_http_version 1.1;
proxy_buffering off;
Expand Down

0 comments on commit b054d83

Please sign in to comment.