make NotFetched as the default RequestContext origin

Summary: Addresses feedback on {D29805637 (067abe2d55)}.

Reviewed By: chadaustin

Differential Revision: D29951945

fbshipit-source-id: 36f33de9762634e99d898ffdd64dfbd9e7ea9323
This commit is contained in:
Zhengchao Liu 2021-07-27 21:20:24 -07:00 committed by Facebook GitHub Bot
parent ecd6818d52
commit cd044d60cf

View File

@ -39,10 +39,10 @@ class ObjectFetchContext {
* Suitable for use as an index into an array of size kOriginEnumMax.
*/
enum Origin : unsigned {
NotFetched,
FromMemoryCache,
FromDiskCache,
FromBackingStore,
NotFetched,
kOriginEnumMax,
};