We currently require an integer to be returned by the session storage backend when storing the last time we sent sessions. This allows us to throttle the delivery of session data to once every 30 seconds. However, some storage backends convert all values to strings, which breaks this check and causes a session to be sent on every request
This PR loosens the check to allow any numeric value instead of specifically an integer
Goal
We currently require an integer to be returned by the session storage backend when storing the last time we sent sessions. This allows us to throttle the delivery of session data to once every 30 seconds. However, some storage backends convert all values to strings, which breaks this check and causes a session to be sent on every request
This PR loosens the check to allow any numeric value instead of specifically an integer