From b0a45e4faf0eba305b6254fc45500b8d770a48e7 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Thu, 6 Mar 2025 14:31:11 -0900 Subject: [PATCH] test --- derby/derby.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/derby/derby.go b/derby/derby.go index f753d9e..80318f6 100644 --- a/derby/derby.go +++ b/derby/derby.go @@ -213,7 +213,7 @@ func (dc *DerbyClock) readLoop() { } else if b[0] == '\n' { // Check if we should consider the race complete dc.mu.Lock() - if dc.status == StatusRunning && results != nil { + if dc.status == StatusRunning && len(results) > 0 { dc.status = StatusFinished dc.mu.Unlock()