mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-05 05:27:40 +03:00
Merge pull request #1136 from apernet/wip-speedtest-grace
feat: graceful speed test shutdown
This commit is contained in:
commit
5315b60610
1 changed files with 23 additions and 5 deletions
|
@ -3,6 +3,9 @@ package cmd
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"os"
|
||||||
|
"os/signal"
|
||||||
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
@ -68,12 +71,27 @@ func runSpeedtest(cmd *cobra.Command, args []string) {
|
||||||
zap.Bool("udpEnabled", info.UDPEnabled),
|
zap.Bool("udpEnabled", info.UDPEnabled),
|
||||||
zap.Uint64("tx", info.Tx))
|
zap.Uint64("tx", info.Tx))
|
||||||
|
|
||||||
|
signalChan := make(chan os.Signal, 1)
|
||||||
|
signal.Notify(signalChan, os.Interrupt, syscall.SIGTERM)
|
||||||
|
defer signal.Stop(signalChan)
|
||||||
|
|
||||||
|
runChan := make(chan struct{}, 1)
|
||||||
|
go func() {
|
||||||
if !skipDownload {
|
if !skipDownload {
|
||||||
runDownloadTest(c)
|
runDownloadTest(c)
|
||||||
}
|
}
|
||||||
if !skipUpload {
|
if !skipUpload {
|
||||||
runUploadTest(c)
|
runUploadTest(c)
|
||||||
}
|
}
|
||||||
|
runChan <- struct{}{}
|
||||||
|
}()
|
||||||
|
|
||||||
|
select {
|
||||||
|
case <-signalChan:
|
||||||
|
logger.Info("received signal, shutting down gracefully")
|
||||||
|
case <-runChan:
|
||||||
|
logger.Info("speed test complete")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func runDownloadTest(c client.Client) {
|
func runDownloadTest(c client.Client) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue