File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
packages/firestore/src/local Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -105,15 +105,11 @@ const MAX_PRIMARY_ELIGIBLE_AGE_MS = 5000;
105
105
const CLIENT_METADATA_REFRESH_INTERVAL_MS = 4000 ;
106
106
/** User-facing error when the primary lease is required but not available. */
107
107
const PRIMARY_LEASE_EXCLUSIVE_ERROR_MSG =
108
- 'Failed to obtain exclusive access to the persistence layer. ' +
109
- 'To allow shared access, make sure to invoke ' +
110
- '`enablePersistence()` with `synchronizeTabs:true` in all tabs. ' +
111
- 'If you are using `experimentalForceOwningTab:true`, make sure that only ' +
112
- 'one tab has persistence enabled at any given time.' ;
108
+ 'Failed to obtain exclusive access to the persistence layer. To allow ' +
109
+ 'shared access, multi-tab synchronization has to be enabled in all tabs.' ;
113
110
const UNSUPPORTED_PLATFORM_ERROR_MSG =
114
- 'This platform is either missing' +
115
- ' IndexedDB or is known to have an incomplete implementation. Offline' +
116
- ' persistence has been disabled.' ;
111
+ 'This platform is either missing IndexedDB or is known to have ' +
112
+ 'an incomplete implementation. Offline persistence has been disabled.' ;
117
113
118
114
// The format of the LocalStorage key that stores zombied client is:
119
115
// firestore_zombie_<persistence_prefix>_<instance_key>
You can’t perform that action at this time.
0 commit comments