From 06521015591e8f7e7487393beff0d11226cce50d Mon Sep 17 00:00:00 2001 From: zane <39070793+zaneenders@users.noreply.github.com> Date: Tue, 29 Apr 2025 20:29:53 -0600 Subject: [PATCH] **Motivation:** Make the sample code in the Samples project easier to try. **Modifications:** Change the node at port 7002 to look at port 7003 instead of 8888 **Result:** Samples project is easier to test out. - Resolves # --- Samples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Samples/README.md b/Samples/README.md index c300370..baefd07 100644 --- a/Samples/README.md +++ b/Samples/README.md @@ -25,7 +25,7 @@ swift run --package-path Samples SWIMNIOSampleCluster --port 7001 which spawns a node on `127.0.0.1:7001`, to spawn another node to join it and form a two node cluster you can: ```bash -swift run --package-path Samples SWIMNIOSampleCluster --port 7002 --initial-contact-points 127.0.0.1:7001,127.0.0.1:8888 +swift run --package-path Samples SWIMNIOSampleCluster --port 7002 --initial-contact-points 127.0.0.1:7001,127.0.0.1:7003 # you can list multiple peers as contact points like this: swift run --package-path Samples SWIMNIOSampleCluster --port 7003 --initial-contact-points 127.0.0.1:7001,127.0.0.1:7002