aws / aws/bedrock-agentcore-sdk-python

Suppress "WARNING: Invalid HTTP request received." warning

Abierto
#225 0 comentarios 1 reacción 0 asignados Ver en GitHub
Lenguaje dominante
Python
Estrellas
761
Forks
147
Merge medio
1 d 23 h
PR fusionados (30 d)
7

Descripción

The following log may be recorded in the Application log output to CloudWatch Logs when the AgentCore runtime starts up.
When recorded during initialization after deployment, this is a message that does not affect the application. However, this could confuse users, so I would like to suppress it.

For example, you can confirm this log message by adding a lifespan to [strands_claude.py](https://github.com/awslabs/amazon-bedrock-agentcore-samples/blob/f50712e3474939965cff165a8cb60980b1d636d9/01-tutorials/01-AgentCore-runtime/01-hosting-agent/01-strands-with-bedrock-model/runtime_with_strands_and_bedrock_models.ipynb) as follows:

```
from contextlib import asynccontextmanager
from typing import AsyncGenerator

from strands import Agent, tool
from strands_tools import calculator # Import the calculator tool
import argparse
import json
from bedrock_agentcore.runtime import BedrockAgentCoreApp
from strands.models import BedrockModel

@asynccontextmanager
async def lifespan(_app: BedrockAgentCoreApp) -> AsyncGenerator[None, None]:
"""Completely empty lifespan context manager for testing."""
yield
app = BedrockAgentCoreApp(lifespan=lifespan)

# Create a custom tool
@tool
def weather():
""" Get weather """ # Dummy implementation
return "sunny"
(snip)
```

Guía de contribución

Abrir la guía de contribución

Línea de trabajo

Comience con la ruta de inicio del runtime y reproduzca la advertencia usando el ejemplo de lifespan en 01-tutorials/01-AgentCore-runtime/01-hosting-agent/01-strands-with-bedrock-model/runtime_with_strands_and_bedrock_models.ipynb. Rastree dónde se emite "WARNING: Invalid HTTP request received." y verifique que la inicialización ya no registre este mensaje inofensivo, mientras que los logs de la aplicación no se vean afectados.

Escrito por el modelo de indexación a partir del texto del issue.

Evaluación

Stack tecnológico
python
Área
backend
Tipo de issue
Error
Dificultad
3/5
Tiempo estimado
1-2 días
Estado de actividad
Estancado
Claridad
Bastante claro
Aptitud para principiantes
45/100

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.