(self, request, node_id)
| 224 | return task_request |
| 225 | |
| 226 | def get(self, request, node_id): |
| 227 | return Response(self._get_task(request, node_id, occupy=False)) |
| 228 | |
| 229 | def post(self, request, node_id): |
| 230 | return Response(self._get_task(request, node_id, occupy=True)) |
no test coverage detected