diff options
| author | Randall Meyer <[email protected]> | 2023-02-15 10:34:04 -0800 |
|---|---|---|
| committer | Randall Meyer <[email protected]> | 2023-02-20 10:28:21 -0800 |
| commit | aba993ed378297f48ff6be18b17c6a963d3fd190 (patch) | |
| tree | c78832e8851c2dc39c4db56fbb3b2469802e9f1f /utilities/utilities.go | |
| parent | e0305ad041549f5f7ff90baa9cae58cf88a9c346 (diff) | |
lint/deprecation cleanup
Diffstat (limited to 'utilities/utilities.go')
| -rw-r--r-- | utilities/utilities.go | 4 |
1 files changed, 2 insertions, 2 deletions
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 } } |
