Andreas Stenius
Andreas Stenius
First thing that comes to my mind, is to have an optional parameter `threshold` that indicates how close the times has to be (in seconds, for instance) in order to...
How's that? The trigger time ought to even out to get synchronized. Ah, it all comes down to how the trigger time to use is selected. I'd say this would...
This is not a Q&A forum, use stackoverflow or the mailinglist for that. Just a hint as to a possibility why there's been no response here..
For testing purposes, you can run the jobs with a custom trigger, as it is the trigger that decides when it is time to run a particular job. If you...
Hmm.. I thought I'd kept the API backwards compatible.. I'd be interested to know if this was not the case.
Cool. I also realized that there actually was a API breaking change going from 0.9.0 to 0.9.1 in the result terms. But looking at the code, it looks like this...
@lafrech thanks. Yes, it is a dict, as the data at that point is arbitrary, but at the root level, it is not, so must work at a nested level....
No, I would very much appreciate this to work, soon-ish ;) haven't looked at if I can get it to work with some surgical monkey patching, though.. To show some...
I've also evaluated flask-restx, and one thing they got right was just resource representations. Perhaps we can draw inspiration from what they have done, and apply it here, too. https://github.com/python-restx/flask-restx/blob/master/flask_restx/resource.py#L51
This is what I came up with, as work-around until there is a better feature to use for this: ```python @blp.response(Schema) @blp.doc(responses={'200':{'description': 'OK', 'content':{ 'text/yaml':{'schema': Schema}, 'application/json':{'schema': Schema} }}}) def...