fix: Update telemetry schema to allow for optional error message (#2711)

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-07-15 17:18:07 -03:00 committed by GitHub
commit 3edc782545
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,4 +34,4 @@ class ComponentPayload(BaseModel):
componentName: str
componentSeconds: int
componentSuccess: bool
componentErrorMessage: str
componentErrorMessage: str | None = None