You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constmessage=`Telegram spooled update claim held by a live worker for ${formatDurationPrecise(claimedForMs)} without active handler state; marking failed so the lane can continue.`;
686
+
try{
687
+
constfailed=awaitfailTelegramSpooledUpdateClaim({
688
+
update: claim,
689
+
reason: "lane-released-on-stuck",
690
+
message,
691
+
});
692
+
if(!failed){
693
+
this.opts.log(
694
+
`[telegram][diag] spooled update ${claim.updateId} live-owned claim no longer had a processing marker to fail.`,
695
+
);
696
+
continue;
697
+
}
698
+
}catch(err){
699
+
this.opts.log(
700
+
`[telegram][diag] spooled update ${claim.updateId} live-owned claim could not be marked failed: ${formatErrorMessage(err)}`,
0 commit comments