Skip to content

Commit

Permalink
Merge pull request #135 from langchain-ai/infra/fix-body-size-param
Browse files Browse the repository at this point in the history
fix: fix body size param
  • Loading branch information
langchain-infra authored Jul 29, 2024
2 parents 58c2334 + 8b712a7 commit c798196
Show file tree
Hide file tree
Showing 2 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.6.19
version: 0.6.20
appVersion: "0.6.43"
4 changes: 2 additions & 2 deletions charts/langsmith/templates/frontend/config-map.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ data:
listen {{ .Values.frontend.containerPort }};
listen [::]:{{ .Values.frontend.containerPort }};
server_name localhost;
client_max_body_size {{ .Values.frontend.maxBodySize }}
client_max_body_size {{ .Values.frontend.maxBodySize }};
error_page 500 502 503 504 /50x.html;
location = /50x.html {
Expand Down Expand Up @@ -122,7 +122,7 @@ data:
listen {{ .Values.frontend.containerPort }};
listen [::]:{{ .Values.frontend.containerPort }};
server_name localhost;
client_max_body_size 25M;
client_max_body_size {{ .Values.frontend.maxBodySize }};
location / {
root /tmp/build;
Expand Down

0 comments on commit c798196

Please sign in to comment.