Skip to content

Commit 7b26dc3

Browse files
committed
bumped requests, updated logging
1 parent 9110264 commit 7b26dc3

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ EXPOSE 5000
2626
# Run the production server
2727
# -w 4: Run 4 worker processes
2828
# -b 0.0.0.0:5000: Listen on all interfaces on port 5000
29-
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:5000", "application:app"]
29+
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:5000", "--access-logfile", "-", "application:app"]

application.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,6 @@ def serve_static(asset_path):
349349

350350
@app.route("/" + SERVICE_VERSION + "/" + APOD_METHOD_NAME + "/", methods=["GET"])
351351
def apod():
352-
LOG.info("apod path called")
353352
try:
354353
# app/json GET method
355354
args = request.args

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies = [
1111
"gunicorn>=23.0.0",
1212
"jinja2>=3.1.6",
1313
"pillow>=12.1.1",
14-
"requests>=2.32.5",
14+
"requests>=2.33.0",
1515
"urllib3>=2.6.3",
1616
"werkzeug>=3.1.5",
1717
]

uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)