ModernUO/Projects
Kamron Batman 80d19c882d
fix(login): run password jobs that have no connection attached
The liveness check in the worker loop read a null NetState as a dead one:

    if (job.State?.Running != true) { continue; }

A password change carries no connection, so State is null, null != true, and
every off-loop SetPassword was silently dropped -- the hash never ran, the
account was never written, and the callback that confirms it to the player
never fired. Apply() had the null case right; the dequeue check did not.

Nothing caught it because the tests all drove ComputeInline, which bypasses
the queue entirely. Adds one that goes through TryEnqueue and pumps the loop
context, which fails against the old check.

Also drops the unused Pending property and narrows MaxPending to private.
2026-08-08 22:03:46 -07:00
..
Application fix: Bumps dependencies. (#2531) 2026-07-14 15:17:55 -07:00
BuildTool fix: Require only runtime packages on Linux, and check ICU and tzdata the way the runtime does (#2561) 2026-08-07 15:03:08 -07:00
Logger fix: Bumps dependencies. (#2531) 2026-07-14 15:17:55 -07:00
Server perf(login): verify Argon2 passwords on a parked worker thread 2026-08-08 10:50:25 -07:00
Server.Tests feat(network): allowlist false-positive IPs, escalate on behavior (#2556) 2026-07-30 23:12:17 -07:00
UOContent fix(login): run password jobs that have no connection attached 2026-08-08 22:03:46 -07:00
UOContent.Tests fix(login): run password jobs that have no connection attached 2026-08-08 22:03:46 -07:00