Urgent.News

What's breaking now, across thousands of outlets.

Tech

Ambiguous submission outcomes should never be retried

Every retry policy you have ever configured treats a failed operation the same way: back off, try again, repeat until it succeeds. That reflex is correct for idempotent work — fetching a page, writing a log line, queueing a message. It is wrong for exactly one operation that job-application automation performs constantly: submitting. Submitting is not idempotent. Pressing "send" twice on an…

When job-application automation systems retry a failed submission, they risk creating duplicate applications for the same role, causing confusion and harm to candidates. These systems should instead mark ambiguous submits as UNKNOWN and never retry them, as retrying unknown submissions risks creating additional, unintended applications.

The system should require explicit confirmation to close an attempt, ensuring that only real applications are recorded. By following this rule, submission metrics become more accurate, and the risk of duplicate applications is eliminated.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

38% of an analyst's questions get "no records found" when the data is right there

Your text-to-SQL agent has a failure mode that logs nothing, alerts nothing, and returns a confidently wrong answer. I finally put a number on how often it can happen, and on a small schema with an…

  • 38.5% of analyst questions return no records due to permission issues
  • Permission checks occur after query generation, not before
  • Scoping schema by caller identity can detect inaccessible tables

More from Wednesday 23 September →