We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29c1115 commit 1474fd5Copy full SHA for 1474fd5
src/google/adk/sessions/database_session_service.py
@@ -269,7 +269,7 @@ class StorageEvent(Base):
269
error_code: Mapped[str] = mapped_column(
270
String(DEFAULT_MAX_VARCHAR_LENGTH), nullable=True
271
)
272
- error_message: Mapped[str] = mapped_column(String(1024), nullable=True)
+ error_message: Mapped[str] = mapped_column(Text, nullable=True)
273
interrupted: Mapped[bool] = mapped_column(Boolean, nullable=True)
274
input_transcription: Mapped[dict[str, Any]] = mapped_column(
275
DynamicJSON, nullable=True
0 commit comments