Skip to content

Commit

Permalink
chore(results): remove test PUT method build_image
Browse files Browse the repository at this point in the history
  • Loading branch information
brucetony committed Feb 29, 2024
1 parent 531e94a commit 9976ca1
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions gateway/routers/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,3 @@ async def upload_to_scratch(
response: Response,
):
pass


@route(
request_method=results_router.put,
path="/put",
status_code=status.HTTP_200_OK,
service_url="https://httpbin.org",
response_model=None, # StreamingResponse
form_params=["file"], # Must match param name
)
async def put_test(
file: UploadFile,
request: Request,
response: Response,
):
"""Testing put."""
pass

0 comments on commit 9976ca1

Please sign in to comment.