diff --git a/CHANGELOG.md b/CHANGELOG.md index 594d6ac4c..1b1cfeda9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change history for stripes-core +## 10.1.2 IN PROGRESS + +* Wait longer before declaring a rotation request to be stale. Refs STCOR-895. + ## [10.1.1](https://github.com/folio-org/stripes-core/tree/v10.1.1) (2024-03-25) [Full Changelog](https://github.com/folio-org/stripes-core/compare/v10.1.0...v10.1.1) diff --git a/src/components/Root/token-util.js b/src/components/Root/token-util.js index 2ebd9c7f4..e1bf8139b 100644 --- a/src/components/Root/token-util.js +++ b/src/components/Root/token-util.js @@ -50,7 +50,7 @@ export const RTR_IS_ROTATING = '@folio/stripes/core::rtrIsRotating'; * * Time in milliseconds */ -export const RTR_MAX_AGE = 2000; +export const RTR_MAX_AGE = 20000; /** * resourceMapper diff --git a/src/components/Root/token-util.test.js b/src/components/Root/token-util.test.js index 42f3ae2ac..e3686fa36 100644 --- a/src/components/Root/token-util.test.js +++ b/src/components/Root/token-util.test.js @@ -188,7 +188,7 @@ describe('rtr', () => { expect(ex).toBe(null); // expect(window.removeEventListener).toHaveBeenCalled(); - }); + }, 25000); it('multiple window (storage event)', async () => { const context = { @@ -224,7 +224,7 @@ describe('rtr', () => { expect(ex).toBe(null); // expect(window.removeEventListener).toHaveBeenCalledWith('monkey') - }); + }, 25000); });