Hi, i'm getting `timestamp out of range for platform time_t` error on the /auth/signinup in django ...
a
Hi, i'm getting
timestamp out of range for platform time_t
error on the /auth/signinup in django
Copy code
/home/amrmzkr/.local/lib/python3.9/site-packages/supertokens_python/framework/django/django_response.py, line 53, in set_cookie
        secure: bool = False,
        httponly: bool = False,
        samesite: str = "lax",
    ):
        self.response.set_cookie(
            key=key,
            value=value,
            expires=datetime.fromtimestamp(ceil(expires / 1000)).strftime( …
                "%a, %d %b %Y %H:%M:%S GMT"
            ),
            path=path,
            domain=domain,
            secure=secure,
            httponly=httponly,
localvars:
Copy code
expires    
4862185295065
the server is running on raspbery pi 3b+ any way to fix this?
r
hey @amrmzkr
have you tried on a non raspbery pi? Im not sure if we can do anything about this specific issue from our side. You could always fork the repo and then change the default value to something smaller.
4 Views