Skip to content

Commit 6798b96

Browse files
committed
Fix port
1 parent 1bf9b38 commit 6798b96

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,10 +354,10 @@
354354
},
355355
"port": {
356356
"type": "integer",
357-
"description": "Port the HTTP server listens on. When unset, tries port 6666, then 6667, 6668, etc. up to 10 attempts.",
358-
"markdownDescription": "Port the HTTP server listens on. When unset, tries port `6666`, then `6667`, `6668`, etc. up to 10 attempts.",
357+
"description": "Port the HTTP server listens on. When unset, tries port 7777, then 7778, 7779, etc. up to 10 attempts.",
358+
"markdownDescription": "Port the HTTP server listens on. When unset, tries port `7777`, then `7778`, `7779`, etc. up to 10 attempts.",
359359
"examples": [
360-
6666
360+
7777
361361
]
362362
},
363363
"password": {

src/eca/remote/server.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
(def ^:private default-port
2020
"Base port for the remote server when no explicit port is configured."
21-
6666)
21+
7777)
2222

2323
(def ^:private max-port-attempts
2424
"Number of sequential ports to try before giving up."

0 commit comments

Comments
 (0)