Skip to content

Commit

Permalink
forcing https for the log file url
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen committed Aug 15, 2023
1 parent 4621359 commit 8fb10ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ async def get_the_log_file_list(request: Request):
"""

# return the list to the caller in JSON format
return JSONResponse(content={'Response': GenUtils.get_log_file_list(f'{request.base_url.scheme}://{request.base_url.netloc}')}, status_code=200,
return JSONResponse(content={'Response': GenUtils.get_log_file_list(f'https://{request.base_url.netloc}')}, status_code=200,
media_type="application/json")


Expand Down

0 comments on commit 8fb10ca

Please sign in to comment.