From 4abf8ba0c705a466413a03d9aa9ba612f8ed4275 Mon Sep 17 00:00:00 2001 From: zhengb Date: Tue, 4 Nov 2025 16:08:55 +0800 Subject: [PATCH 1/2] save --- dialtesting/icmp.go | 1 - 1 file changed, 1 deletion(-) diff --git a/dialtesting/icmp.go b/dialtesting/icmp.go index 31e15745..38765ebd 100644 --- a/dialtesting/icmp.go +++ b/dialtesting/icmp.go @@ -621,7 +621,6 @@ func doPing(timeout time.Duration, target string) (rtt time.Duration, err error) } if err != nil { if nerr, ok := err.(net.Error); ok && nerr.Timeout() { // nolint: errorlint - logger.Debugf("timeout reading from socket: %s", err.Error()) return 0, nil } return 0, fmt.Errorf("error reading from socket: %w", err) From e154804fa4c9604ac15f687a75ebbe3f684825c5 Mon Sep 17 00:00:00 2001 From: zhengb Date: Mon, 1 Dec 2025 18:28:04 +0800 Subject: [PATCH 2/2] save --- dialtesting/task.go | 1 + 1 file changed, 1 insertion(+) diff --git a/dialtesting/task.go b/dialtesting/task.go index 1d6a1174..b73dcb39 100644 --- a/dialtesting/task.go +++ b/dialtesting/task.go @@ -114,6 +114,7 @@ type ITask interface { ID() string Status() string Run() error + Clear() CheckResult() ([]string, bool) Class() string GetResults() (map[string]string, map[string]interface{})