From aba993ed378297f48ff6be18b17c6a963d3fd190 Mon Sep 17 00:00:00 2001 From: Randall Meyer Date: Wed, 15 Feb 2023 10:34:04 -0800 Subject: lint/deprecation cleanup --- utilities/utilities.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utilities') diff --git a/utilities/utilities.go b/utilities/utilities.go index 538889c..57b4a90 100644 --- a/utilities/utilities.go +++ b/utilities/utilities.go @@ -180,9 +180,9 @@ func OrTimeout(f func(), timeout time.Duration) { return completed }() select { - case _ = <-completeChannel: + case <-completeChannel: break - case _ = <-time.After(timeout): + case <-time.After(timeout): break } } -- cgit v1.2.3