We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 538f959 commit 97be0aaCopy full SHA for 97be0aa
sample-apps/python/django_frontend_service/frontend_service_app/views.py
@@ -47,7 +47,6 @@ def run_scheduler():
47
run_local_root_client_call_recurring_service()
48
49
def healthcheck(request):
50
- logger.warn("This is a custom log for validation testing")
51
return HttpResponse("healthcheck")
52
53
def aws_sdk_call(request):
@@ -57,6 +56,9 @@ def aws_sdk_call(request):
57
56
testing_id = request.GET.get('testingId', None)
58
if testing_id is not None:
59
bucket_name += "-" + testing_id
+
60
+ logger.warning("This is a custom log for validation testing")
61
62
s3_client = boto3.client("s3")
63
try:
64
s3_client.get_bucket_location(
0 commit comments