We had a 1s race condition where a user could get their rights loaded
at the exact time an admin is changing roles/caps and see the "old"
data. Or even see a half-updated view of the access controls.
Yuck.
So we fix the race condition backdating the dirtyness. Cheap, but
effective. And then we backdate it some more to cover for minor clock
flutter on clusters (you still need ntp however!).
// only if it is a non-empty string
if (is_string($path) && $path !== '') {
- set_config($path, time(), 'accesslib/dirtycontexts');
+ // The timestamp is 2s in the past to cover for
+ // - race conditions within the 1s granularity
+ // - very small clock offsets in clusters (use ntpd!)
+ set_config($path, time()-2, 'accesslib/dirtycontexts');
}
}