Page MenuHomePhabricator

[lib] Set failedQueryCacheTimeout to 0 in UserIdentityCache
ClosedPublic

Authored by ashoat on Sep 11 2024, 3:38 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Oct 14, 2:56 PM
Unknown Object (File)
Mon, Oct 14, 2:56 PM
Unknown Object (File)
Mon, Oct 14, 2:56 PM
Unknown Object (File)
Mon, Oct 14, 2:28 PM
Unknown Object (File)
Oct 1 2024, 12:33 PM
Unknown Object (File)
Sep 26 2024, 7:40 PM
Unknown Object (File)
Sep 26 2024, 1:14 PM
Unknown Object (File)
Sep 26 2024, 4:18 AM
Subscribers

Details

Summary

This addresses ENG-9255, and makes it so if a user identity fetch times out, the next time it's requested, we don't return null from the cache, but instead retry the fetch.

Test Plan

I set queryTimeout to 1 second, which made it time out. I confirmed in the logs that after the timeout, a second request was dispatched

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

lib/components/user-identity-cache.react.js
177 ↗(On Diff #44062)

This change was necessary to differentiate a failed fetch from a timeout

205 ↗(On Diff #44062)

The above change makes sure that we use failedQueryCacheTimeout in the case of a successful fetch that simply returns no information for a given UID. In that case, we consider the request successful, and the identity to not exist

This revision is now accepted and ready to land.Sep 12 2024, 3:54 AM