-
Notifications
You must be signed in to change notification settings - Fork 0
Removed deprecated options, updated docker samples, chrore telemetry #31
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| EVENTSTORE_CLUSTER_SIZE=3 | ||
| EVENTSTORE_RUN_PROJECTIONS=All | ||
| EVENTSTORE_INT_TCP_PORT=1112 | ||
| EVENTSTORE_HTTP_PORT=2113 | ||
| EVENTSTORE_REPLICATION_PORT=1112 | ||
| EVENTSTORE_NODE_PORT=2113 | ||
|
Comment on lines
+3
to
+4
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. 💡 Verification agent 🧩 Analysis chainEnv var rename: replication/http → replication/node; verify image support The renames to EVENTSTORE_REPLICATION_PORT and EVENTSTORE_NODE_PORT look aligned with the codebase-wide shift to replication/node semantics. Please double-check that the Docker images used in this repo (and in your deployment pipelines) recognize these env vars to avoid silent misconfigurations. Run this from the repo root to spot usages and ensure these are the canonical names in the codebase: If you're relying on the prebuilt docker image tag in samples (eventstore/eventstore:24.2.0-jammy), confirm that tag supports these new names in its docs/changelog. 🏁 Script executed: #!/bin/bash
# Verify env var names are recognized by the server's option binding
rg -nP '\bEVENTSTORE_(REPLICATION|NODE)_(PORT|IP)\b|AdvertiseNodePortToClientAs|NodePortAdvertiseAs|ReplicationPort\b'
# Also list any leftover deprecated names to catch stragglers
rg -nP '\bEVENTSTORE_(INT(_TCP)?|HTTP)_'Length of output: 4161 Verify env var usage and update deprecated samples The codebase correctly recognizes • In EVENTSTORE_INT_IP=…with EVENTSTORE_REPLICATION_IP=…(lines 25, 57, and 82). Additionally, please confirm that the Docker image tag you’re using (e.g. 🤖 Prompt for AI Agents |
||
| EVENTSTORE_TRUSTED_ROOT_CERTIFICATES_PATH=/etc/eventstore/certs/ca | ||
| EVENTSTORE_DISCOVER_VIA_DNS=false | ||
| EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP=true | ||
| EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP=true | ||
Uh oh!
There was an error while loading. Please reload this page.