Creating a payment will shutdown the server due to stack overflow #4636
-
Beta Was this translation helpful? Give feedback.
Answered by
SanchithHegde
Jun 2, 2024
Replies: 2 comments
-
hey @Rudy-Zidan we're fixing this here In the meanwhile you can specify RUST_MIN_STACK to 4mb in the docker compose service for hyperswitch-server. diff --git a/docker-compose.yml b/docker-compose.yml
index e6b9c4cec..16251c2f3 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -56,6 +56,8 @@ services:
volumes:
- ./config:/local/config
- ./files:/local/bin/files
+ environment:
+ - RUST_MIN_STACK=4194304
labels:
logs: "promtail"
healthcheck: We'll close this discussion once the docker hub images are patched |
Beta Was this translation helpful? Give feedback.
0 replies
-
The Docker images have since been patched to include the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
gorakhnathy7
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The Docker images have since been patched to include the
RUST_MIN_STACK
environment variable, closing this as resolved.