Relax warmup command availability check

This commit is contained in:
2026-06-07 19:05:35 -07:00
parent d210cbb820
commit 5c874f3e53
+4 -1
View File
@@ -412,8 +412,11 @@ done:
if resultCount == 0 {
return fmt.Errorf("no action results received")
}
if postStatus != eagle.PostCommandResponse_SUCCESS {
return fmt.Errorf("post command did not succeed: %v", postStatus)
}
if commandCount == 0 {
return fmt.Errorf("no new commands received after posting command")
log.Printf(" No new commands received after posting command; command result stream is healthy")
}
return nil