Connor

Results 6 comments of Connor

I will be including this shortly, stay tuned

Thanks, can you just do a pull request?

Related fix: https://github.com/dabblewriter/durable-apis/commit/dad78ba42f5d940e0d0ac1008f1306b255fa83ae

I forked it and added the auto retrying in: https://github.com/kwhitley/itty-durable/compare/v1.x...sathoro:itty-durable:v1.x Can't do a PR since I add to change some other code though

@santiagomalter the link is now broken, do you have any other info on the workaround? We are facing the same issue

@jalvz Thanks! I ended up creating a more generic solution: ``` class OpbeatViewNameMiddleware(object): def __init__(self, get_response): self.get_response = get_response def __call__(self, request): return self.get_response(request) def process_view(self, request, view_func, view_args, view_kwargs):...