Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Lvnszn committed Nov 22, 2021
1 parent 06db3ff commit b1acb3b
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions examples/echo/udp-echo/server/app/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ func main() {
initProfiling()

initServer()
gxlog.CInfo("%s starts successfull! its version=%s, its listen ends=%s:%s\n",
gxlog.CInfo("%s starts successfull! its listen ends=%s:%s\n",
conf.AppName, conf.Host, conf.Ports)
log.Info("%s starts successfull! its version=%s, its listen ends=%s:%s\n",
log.Info("%s starts successfull! its listen ends=%s:%s\n",
conf.AppName, conf.Host, conf.Ports)

initSignal()
Expand Down
2 changes: 1 addition & 1 deletion examples/echo/udp-echo/server/profiles/dev/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Host = "127.0.0.1"
# Host = "192.168.35.1"
# Host = "192.168.8.3"
# Ports = ["10000", "20000"]
Ports = "10000"
Ports = ["10000"]
ProfilePort = 10086

# session
Expand Down
2 changes: 1 addition & 1 deletion examples/echo/udp-echo/server/profiles/release/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Host = "127.0.0.1"
# Host = "192.168.35.1"
# Host = "192.168.8.3"
# Ports = ["10000", "20000"]
Ports = "10000"
Ports = ["10000"]
ProfilePort = 10086

# session
Expand Down
2 changes: 1 addition & 1 deletion examples/echo/udp-echo/server/profiles/test/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Host = "127.0.0.1"
# Host = "192.168.35.1"
# Host = "192.168.8.3"
# Ports = ["10000", "20000"]
Ports = "10000"
Ports = ["10000"]
ProfilePort = 10086

# session
Expand Down
4 changes: 2 additions & 2 deletions examples/echo/ws-echo/server/profiles/dev/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ AppName = "ECHO-SERVER"
# Host = "127.0.0.1"
# Host = "192.168.35.1"
Host = "localhost"
Ports = "10000"
Paths = "/echo"
Ports = ["10000", "20000"]
Paths = ["/echo", "/echo"]
ProfilePort = 10086

# session
Expand Down
4 changes: 2 additions & 2 deletions examples/echo/ws-echo/server/profiles/release/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ AppName = "ECHO-SERVER"
# Host = "127.0.0.1"
# Host = "192.168.35.1"
Host = "localhost"
Ports = "10000"
Paths = "/echo"
Ports = ["10000", "20000"]
Paths = ["/echo", "/echo"]
ProfilePort = 10086

# session
Expand Down
4 changes: 2 additions & 2 deletions examples/echo/ws-echo/server/profiles/test/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ AppName = "ECHO-SERVER"
# Host = "127.0.0.1"
# Host = "192.168.35.1"
Host = "localhost"
Ports = "10000"
Paths = "/echo"
Ports = ["10000", "20000"]
Paths = ["/echo", "/echo"]
ProfilePort = 10086

# session
Expand Down
4 changes: 2 additions & 2 deletions examples/echo/wss-echo/server/profiles/dev/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ AppName = "ECHO-SERVER"
# Host = "127.0.0.1"
# Host = "192.168.35.1"
Host = "localhost"
Ports = "10000"
Paths = "/echo"
Ports = ["10000", "20000"]
Paths = ["/echo", "/echo"]
ProfilePort = 10086

# session
Expand Down
4 changes: 2 additions & 2 deletions examples/echo/wss-echo/server/profiles/release/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ AppName = "ECHO-SERVER"
# Host = "127.0.0.1"
# Host = "192.168.35.1"
Host = "localhost"
Ports = "10000"
Paths = "/echo"
Ports = ["10000", "20000"]
Paths = ["/echo", "/echo"]
ProfilePort = 10086

# session
Expand Down
4 changes: 2 additions & 2 deletions examples/echo/wss-echo/server/profiles/test/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ AppName = "ECHO-SERVER"
# Host = "127.0.0.1"
# Host = "192.168.35.1"
Host = "localhost"
Ports = "10000"
Paths = "/echo"
Ports = ["10000", "20000"]
Paths = ["/echo", "/echo"]
ProfilePort = 10086

# session
Expand Down

0 comments on commit b1acb3b

Please sign in to comment.