-
Notifications
You must be signed in to change notification settings - Fork 0
Load & integration testing for Raft #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: feature/raft-in-progress
Are you sure you want to change the base?
Changes from all commits
4aa8fee
23b0ad4
b90ae4f
ac6b302
a5ab932
5ca69a2
053e60e
e30c4c5
140c65a
b3127f8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,7 +1,15 @@ | ||||||
--- | ||||||
version: '3.8' | ||||||
services: | ||||||
app: | ||||||
tkvpp-node-standalone: | ||||||
image: tinykvpp-clang:latest | ||||||
container_name: tkvpp-node-1 | ||||||
security_opt: | ||||||
- seccomp:unconfined | ||||||
container_name: tkvpp-node-standalone | ||||||
command: ["/app/tkvpp", "-c", "/app/config.json"] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don’t repeat the binary when image has ENTRYPOINT With ENTRYPOINT ["/app/tkvpp"] in the image, your current command repeats the binary, leading to "/app/tkvpp /app/tkvpp -c ...". Pass only flags. Apply: - command: ["/app/tkvpp", "-c", "/app/config.json"]
+ command: ["-c", "/app/config.json"] 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
|
||||||
ports: | ||||||
- "9891:9891" | ||||||
volumes: | ||||||
- ./assets/tkvpp_config_standalone.json:/app/config.json | ||||||
- tkvpp-node-standalone:/var/tkvpp | ||||||
volumes: | ||||||
tkvpp-node-standalone: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Peers should not use 0.0.0.0; make empty for standalone or use real endpoints
"0.0.0.0" is valid for binding but invalid as a remote peer address. In standalone mode, use an empty list; in clustered mode, list concrete host:port values for other nodes.
Apply:
📝 Committable suggestion
🤖 Prompt for AI Agents