crawd 0.9.3 → 0.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -982,12 +982,13 @@ export class Coordinator {
|
|
|
982
982
|
await nudgeOp
|
|
983
983
|
} catch {}
|
|
984
984
|
|
|
985
|
-
if (noReply) {
|
|
986
|
-
this.logger.log('[Coordinator] Agent sent NO_REPLY
|
|
985
|
+
if (noReply && !this.hasPendingPlanSteps()) {
|
|
986
|
+
this.logger.log('[Coordinator] Agent sent NO_REPLY with no pending steps, going to sleep')
|
|
987
987
|
this.goSleep()
|
|
988
988
|
return
|
|
989
989
|
}
|
|
990
990
|
|
|
991
|
+
// Keep nudging if plan has pending steps, even after NO_REPLY
|
|
991
992
|
this.checkPlanProgress()
|
|
992
993
|
}
|
|
993
994
|
|