Compare commits

...
Author SHA1 Message Date
admin 5c874f3e53 Relax warmup command availability check 2026-06-07 19:05:35 -07:00
+4 -1
View File
@@ -412,8 +412,11 @@ done:
if resultCount == 0 { if resultCount == 0 {
return fmt.Errorf("no action results received") 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 { 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 return nil