Today we only support actors listening on port 80. This is hard-coded in atenet (
|
targetAddr := net.JoinHostPort(workerIP, "80") |
).
This task is to allow actor containers to listen on multiple ports.
I guess one open question is how the router deals with? Will it add listeners dynamically as actor templates are created? Will the DNS names be extended to include the port in the name (some sandboxing tools do this).
Today we only support actors listening on port 80. This is hard-coded in atenet (
substrate/cmd/atenet/internal/router/extproc.go
Line 162 in 00a90a8
This task is to allow actor containers to listen on multiple ports.
I guess one open question is how the router deals with? Will it add listeners dynamically as actor templates are created? Will the DNS names be extended to include the port in the name (some sandboxing tools do this).