Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "fix accept incoming network connections" #2294

Merged
merged 1 commit into from
Mar 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Revert "fix accept incoming network connections (#2216)"
This reverts commit 2ff2b19.
  • Loading branch information
appleboy authored Mar 23, 2020
commit e8e308da7f213752896cab6d06e0e57cd71c8271
4 changes: 2 additions & 2 deletions utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,10 @@ func resolveAddress(addr []string) string {
case 0:
if port := os.Getenv("PORT"); port != "" {
debugPrint("Environment variable PORT=\"%s\"", port)
return "localhost:" + port
return ":" + port
}
debugPrint("Environment variable PORT is undefined. Using port :8080 by default")
return "localhost:8080"
return ":8080"
case 1:
return addr[0]
default:
Expand Down