If this function returns false, we will queue the operation for later. Some logic in the processing code can be simplified as the result of this change.
Depends on D12936
Paths
| Differential D12948 Authored by tomek on Jul 30 2024, 9:15 AM.
Details Summary If this function returns false, we will queue the operation for later. Some logic in the processing code can be simplified as the result of this change. Depends on D12936 Test Plan Tested this for one case - creating change_thread_settings update for a thread that isn't present in the store. Also tested that if the thread is in the store, the ops are being processed.
Diff Detail
Event TimelineHerald added a subscriber: ashoat. · View Herald TranscriptJul 30 2024, 9:15 AM2024-07-30 09:15:30 (UTC-7) Harbormaster completed remote builds in B30819: Diff 42972.Jul 30 2024, 9:32 AM2024-07-30 09:32:28 (UTC-7) Harbormaster completed remote builds in B30820: Diff 42973.Jul 30 2024, 9:56 AM2024-07-30 09:56:48 (UTC-7) Comment Actions I had previously suggested implemented a solution to this based on a tcomb validator. We'll need to specify IDs that have to be checked for collision again certain SQLite tables, and I was planning on using a tcomb validator approach for that. It seems like checking IDs for existence in certain SQLite tables is a very similar problem, and ought to be solved in a similar way. This revision is now accepted and ready to land.Jul 31 2024, 3:00 AM2024-07-31 03:00:00 (UTC-7) Comment Actions Not sure if @ashoat's comment demands changes to this diff, please make sure to address it Comment Actions
I'm not sure. It sounds similar, but there are important differences:
It feels to me that validation and checking if an operation can be processed are two distinct things and using validators instead of canBeProcessed will be more complicated. But I'm open to giving it a try. If we decide to do that I would rather land this diff and modify the logic later, to make sure we unblock other things (in this case the whole queueing logic). Comment Actions Discussed this with @tomek in our 1:1 and we agreed to proceed with this approach for now. I think that using validators for the most common cases makes sense, but I agree there are exceptions where we'll need to do something more complicated. For those complicated cases, I think having this canBeProcessed function on the spec makes sense
Harbormaster completed remote builds in B30865: Diff 43032.Aug 2 2024, 2:52 AM2024-08-02 02:52:35 (UTC-7) tomek edited the test plan for this revision. (Show Details)Aug 2 2024, 4:53 AM2024-08-02 04:53:09 (UTC-7) Closed by commit rCOMM8237d225adce: [lib] Add a function to DM operations spec checking if an operation can be… (authored by tomek). · Explain WhyAug 2 2024, 8:38 AM2024-08-02 08:38:10 (UTC-7) This revision was automatically updated to reflect the committed changes. Comment Actions
I don't agree that this is a "different approach". I try to consistently use this approach, except in cases where the returned value really should not be modified.
Revision Contents
Diff 43032 lib/shared/dm-ops/add-members-spec.js
lib/shared/dm-ops/change-thread-settings-spec.js
lib/shared/dm-ops/create-sidebar-spec.js
lib/shared/dm-ops/create-thread-spec.js
|