Daniel
Daniel
I would make the quick point that in order to _properly_ implement all 3 points, we would need to transitions to JWTs with refresh tokens. This current mechanism is a...
It would - add 10 seconds to the token expiry the first time it is used - not extend the token for the next 60 seconds (meaning it would expire)...
> What could be the difference between 500ms and 900ms cache TTL in practice? No real difference. The intent is to just prevent the extension being called every time for...
> Why and when do these bursts occur in the first place It's down to the specific use case, but consider simple functionality that queries an object and then saves...
@mtrezza it seems that it was fixed here https://github.com/parse-community/parse-server/pull/8784. Could not replicate on alpha. @jaysonng can you send replication steps on Parse Server 7+?
I think it would be worth having a key distinction though as the current test suite would be hard to parallelise due to the e2e nature of it. IMO, a...
My suggestion is to re-look at how we do testing - whilst we can do e2e parallel testing with jasmine, I would suggest starting fresh and evaluating the best e2e...
@coderabbitai review
I was unable to replicate, here is the test that I wrote: ```js it('link with provider should return sessionToken', async () => { const provider = getMockFacebookProvider(); Parse.User._registerAuthenticationProvider(provider); const user...
Yeah I tried to edit the test / test suite to no avail. Let me see if I can replicate with the example server