Loading
fix(spec): use Time.now in TestRedis autostart wait loop
Time.zone.now requires ActiveSupport::TimeWithZone to be loaded, which is not guaranteed at the moment TestRedis.autostart! runs on a cold spec process (first reset! call before any other lib has loaded zones). Plain Time.now has the same monotonic-enough semantics for a 15-second docker compose wait and removes the AS dependency from the autostart path.