Results 43 comments of Andrea Maschio

I see the behaviour is fixed in the branch `wting_default_python3`. So feel free to close the issue.

update: I guess the change happened in electron and not in mattermost, as also slack shows the same behaviour

reported issue here https://github.com/electron/electron/issues/34347

Well, it should put the "do not disturb mode on" right? When I start a call with Muzzle on, nothing happens.

I tried both, but it seems that it doesn’t make any difference, unless I am doing something wrong.

@bdkjones very good point, not obvious at first but absolutely obvious at a second thought. I am using the gotomeeting client (8.7.0).

I've used both in many projects and I can confirm that in small to mid sized projects it is not too much of a hassle to switch from one to...

+1 Why is this issue still open? I don't get what was the final decision. It seems that the current behaviour is that the JWT_REFRESH_EXPIRATION_DELTA should be < than JWT_EXPIRATION_DELTA....

for anyone who needs this feature, found this framework that behaves exactly as expected https://github.com/davesque/django-rest-framework-simplejwt. I hope it could help.

alright so this is my implementation: import datetime from rest_framework_jwt.settings import api_settings def jwt_response_payload_handler(token, user=None, request=None): return { 'token': token, 'exp': datetime.datetime.utcnow() + api_settings.JWT_EXPIRATION_DELTA } where is that date checked?...