Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: start one ingress server per controller (#1655)
Fixes #1643 This change will increment the port for each `ingress` and `controller` being created. One ingress server per controller. The result would look something like this (keeping the `8892` and `8891` ports respectively) ```bash info: Starting FTL with 5 controller(s) info:controller2: Web console available at: http://localhost:8896 info:controller4: Web console available at: http://localhost:8900 info:controller0: Web console available at: http://localhost:8892 info:controller3: Web console available at: http://localhost:8898 info:controller1: Web console available at: http://localhost:8894 info:controller4: HTTP ingress server listening on: http://localhost:8899 info:controller2: HTTP ingress server listening on: http://localhost:8895 info:controller0: HTTP ingress server listening on: http://localhost:8891 info:controller3: HTTP ingress server listening on: http://localhost:8897 info:controller1: HTTP ingress server listening on: http://localhost:8893 ```
- Loading branch information