Jonathan
Jonathan
The `get_initial` of a serializer normally looks like this: ``` def get_initial(self): if hasattr(self, 'initial_data'): return OrderedDict([ (field_name, field.get_value(self.initial_data)) for field_name, field in self.fields.items() if (field.get_value(self.initial_data) is not empty) and ...
It seems that if the decimal in the url is not within the specifications given in the model definition, then the filter fails and returns everything. ``` class Test(models.Model): my_number...
We could remove `token_key` and directly filter the DB by `digest` during authentication. With the salt gone, I think there are only 2 reasons to search the DB by `token_key`...
See issue #245
I think I've found the cause of https://github.com/Koed00/django-q/issues/218 and https://github.com/Koed00/django-q/issues/200. Django Q generally cycles through which worker gets the next task. If the next worker in that cycle gets killed,...
I'm testing this module by setting up a timer to log the time every 10 minutes and running it for extended periods. When I check the times logged, it is...