GithubHelp home page GithubHelp logo

Comments (4)

KevinWu0904 avatar KevinWu0904 commented on August 15, 2024 1

I think it really doesn't work.

When the main goroutine exit, all the process will exit. It remains no chance to execute the sub goroutine's shutdown, right ?

Maybe we can change the code like:

package main

import (
	"context"
	"log"
	"net/http"
	"os/signal"
	"syscall"
	"time"
)

func main() {
	ctx, _ := signal.NotifyContext(context.Background(), syscall.SIGTERM, syscall.SIGINT)

	http.HandleFunc("/ping", ping)
	server := &http.Server{Addr: ":6666", Handler: nil}

	go func() {
		if err := server.ListenAndServe(); err != nil {
			log.Printf("Failed to start http server, error: %s", err)
			return
		}
	}()

	<-ctx.Done()

	// do some cleanup things

	t, _ := context.WithTimeout(context.Background(), 5*time.Second)

	if err := server.Shutdown(t); err != nil {
		log.Printf("Failed to stop server, error: %s", err)
	}
}

func ping(w http.ResponseWriter, r *http.Request) {
	time.Sleep(4 * time.Second)
	_, _ = w.Write([]byte("success"))
}

from zadig.

nanzm avatar nanzm commented on August 15, 2024 1

@KevinWu0904 Yes, yours is right !

from zadig.

27149chen avatar 27149chen commented on August 15, 2024 1

@nanzm thank you for pointing out this, @KevinWu0904 thank you for your solution. It will appear in opensource version soon

from zadig.

27149chen avatar 27149chen commented on August 15, 2024

fixed in #46

from zadig.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.