fix: default ports 8470 (HTTP) / 4250 (NATS) to avoid clash with registry_api on 8420

This commit is contained in:
agent
2026-06-03 19:54:36 +02:00
parent cd02a52191
commit 888ff75236
4 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -19,8 +19,8 @@ import (
func main() {
var (
natsURL = flag.String("nats-url", "nats://127.0.0.1:4222", "NATS url")
ctrlURL = flag.String("ctrl-url", "http://127.0.0.1:8420", "membershipd control-plane url")
natsURL = flag.String("nats-url", "nats://127.0.0.1:4250", "NATS url")
ctrlURL = flag.String("ctrl-url", "http://127.0.0.1:8470", "membershipd control-plane url")
roomSub = flag.String("room", "proc.test.ticks", "room subject to publish to")
idFile = flag.String("id-file", "./local_files/worker.id", "identity file path")
)