Skip to content
Snippets Groups Projects
Commit c8f26d92 authored by 邹毅贤's avatar 邹毅贤
Browse files

modify start provider with random port

parent 52d56414
No related branches found
No related tags found
No related merge requests found
......@@ -106,6 +106,11 @@ func NewServiceConfig(id string, context context.Context) *ServiceConfig {
}
}
// Get Random Ports with no size
func getRandomPort() int {
return getRandomPorts(1)[0]
}
// Get Random Ports with size
func getRandomPorts(size int) []int {
ports := make([]int, 0, size)
......@@ -164,8 +169,7 @@ func (c *ServiceConfig) Export() error {
return nil
}
ports := getRandomPorts(protocolSize)
for i, proto := range protocolConfigs {
for _, proto := range protocolConfigs {
// registry the service reflect
methods, err := common.ServiceMap.Register(c.InterfaceName, proto.Name, c.rpcService)
if err != nil {
......@@ -175,7 +179,7 @@ func (c *ServiceConfig) Export() error {
}
port := proto.Port
if len(proto.Port) == 0 {
port = strconv.Itoa(ports[i])
port = strconv.Itoa(getRandomPort())
}
ivkURL := common.NewURLWithOptions(
common.WithPath(c.id),
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment