You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we get a Delete, right now we set Object.deleted to True, and we have to check that flag everywhere. This originally seemed like a good idea, long ago when I was young and foolish, but I don't know that it's ever bought us anything, and it's a liability. We should switch to actually deleting.
The text was updated successfully, but these errors were encountered:
One catch: we can't delete Objects in Protocol.receive because send tasks need their copies. So we'd need to delay that delete, maybe with Object._expire.
When we get a
Delete
, right now we setObject.deleted
toTrue
, and we have to check that flag everywhere. This originally seemed like a good idea, long ago when I was young and foolish, but I don't know that it's ever bought us anything, and it's a liability. We should switch to actually deleting.The text was updated successfully, but these errors were encountered: