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

Fixed http listener error. #843

Merged
merged 4 commits into from
Jul 24, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fixed http listener error.
  • Loading branch information
weicut committed Jul 23, 2021
commit f50fb1ef4f7b0412c4b484f71e1601f8bcb0079f
4 changes: 2 additions & 2 deletions core/proc/shutdown.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ func gracefulStop(signals chan os.Signal) {
}

// NotifyWrapUpListeners notifies wrap up listeners.
func NotifyWrapUpListeners(){
func NotifyWrapUpListeners() {
wrapUpListeners.notifyListeners()
}

// NotifyShutdownListeners notifies wrap down listeners.
func NotifyShutdownListeners(){
func NotifyShutdownListeners() {
shutdownListeners.notifyListeners()
}

Expand Down