Skip to content

Commit bf092bb

Browse files
fix: dont route multipart temporarily (#227)
1 parent 5b7989e commit bf092bb

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

charts/langsmith/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ maintainers:
55
66
description: Helm chart to deploy the langsmith application and all services it depends on.
77
type: application
8-
version: 0.9.13
8+
version: 0.9.14
99
appVersion: "0.9.44"

charts/langsmith/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# langsmith
22

3-
![Version: 0.9.13](https://img.shields.io/badge/Version-0.9.13-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.9.44](https://img.shields.io/badge/AppVersion-0.9.44-informational?style=flat-square)
3+
![Version: 0.9.14](https://img.shields.io/badge/Version-0.9.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.9.44](https://img.shields.io/badge/AppVersion-0.9.44-informational?style=flat-square)
44

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

charts/langsmith/templates/frontend/config-map.yaml

+16-16
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ data:
6969
proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.platformBackend.name }}:{{ .Values.platformBackend.service.port }};
7070
}
7171
72-
location = /{{ .Values.ingress.subdomain }}/api/v1/runs/multipart {
73-
rewrite /{{ .Values.ingress.subdomain }}/api/v1/runs/multipart /runs/multipart break;
74-
proxy_set_header Connection '';
75-
proxy_http_version 1.1;
76-
proxy_buffering off;
77-
proxy_cache off;
78-
proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.platformBackend.name }}:{{ .Values.platformBackend.service.port }};
79-
}
72+
{{/* location = /{{ .Values.ingress.subdomain }}/api/v1/runs/multipart {*/}}
73+
{{/* rewrite /{{ .Values.ingress.subdomain }}/api/v1/runs/multipart /runs/multipart break;*/}}
74+
{{/* proxy_set_header Connection '';*/}}
75+
{{/* proxy_http_version 1.1;*/}}
76+
{{/* proxy_buffering off;*/}}
77+
{{/* proxy_cache off;*/}}
78+
{{/* proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.platformBackend.name }}:{{ .Values.platformBackend.service.port }};*/}}
79+
{{/* }*/}}
8080

8181
location = /{{ .Values.ingress.subdomain }}/api/v1/runs/batch {
8282
rewrite /{{ .Values.ingress.subdomain }}/api/v1/runs/batch /runs/batch break;
@@ -257,14 +257,14 @@ data:
257257
proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.platformBackend.name }}:{{ .Values.platformBackend.service.port }};
258258
}
259259
260-
location = /api/v1/runs/multipart {
261-
rewrite /api/v1/runs/multipart /runs/multipart break;
262-
proxy_set_header Connection '';
263-
proxy_http_version 1.1;
264-
proxy_buffering off;
265-
proxy_cache off;
266-
proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.platformBackend.name }}:{{ .Values.platformBackend.service.port }};
267-
}
260+
{{/* location = /api/v1/runs/multipart {*/}}
261+
{{/* rewrite /api/v1/runs/multipart /runs/multipart break;*/}}
262+
{{/* proxy_set_header Connection '';*/}}
263+
{{/* proxy_http_version 1.1;*/}}
264+
{{/* proxy_buffering off;*/}}
265+
{{/* proxy_cache off;*/}}
266+
{{/* proxy_pass http://{{ include "langsmith.fullname" . }}-{{ .Values.platformBackend.name }}:{{ .Values.platformBackend.service.port }};*/}}
267+
{{/* }*/}}
268268

269269
location = /api/v1/runs/batch {
270270
rewrite /api/v1/runs/batch /runs/batch break;

0 commit comments

Comments
 (0)