-
Notifications
You must be signed in to change notification settings - Fork 349
Open
Labels
area / SDK-storageIssue area: SDK and storage related issuesIssue area: SDK and storage related issueshelp wantedExtra attention is neededExtra attention is neededphase / shippedIssue phase: shippedIssue phase: shippedtype / bugIssue type: something isn't workingIssue type: something isn't working
Milestone
Description
🐛 Bug
When running a remote tracking server (v3.14.0) and adding a tag via run.add_tag("foo")
, I get the following error:
pydantic.error_wrappers.ValidationError: 2 validation errors for RunInfoOut
response -> props -> tags -> 0 -> color
none is not an allowed value (type=type_error.none.not_allowed)
response -> props -> tags -> 0 -> description
none is not an allowed value (type=type_error.none.not_allowed)
ERROR: Exception in ASGI application
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/uvicorn/protocols/http/h11_impl.py", line 405, in run_asgi
self.scope, self.receive, self.send
File "/usr/local/lib/python3.7/site-packages/uvicorn/middleware/proxy_headers.py", line 78, in __call__
return await self.app(scope, receive, send)
File "/usr/local/lib/python3.7/site-packages/fastapi/applications.py", line 199, in __call__
await super().__call__(scope, receive, send)
File "/usr/local/lib/python3.7/site-packages/starlette/applications.py", line 112, in __call__
await self.middleware_stack(scope, receive, send)
File "/usr/local/lib/python3.7/site-packages/starlette/middleware/errors.py", line 181, in __call__
raise exc from None
File "/usr/local/lib/python3.7/site-packages/starlette/middleware/errors.py", line 159, in __call__
await self.app(scope, receive, _send)
File "/usr/local/lib/python3.7/site-packages/starlette/middleware/cors.py", line 78, in __call__
await self.app(scope, receive, send)
File "/usr/local/lib/python3.7/site-packages/starlette/exceptions.py", line 82, in __call__
raise exc from None
File "/usr/local/lib/python3.7/site-packages/starlette/exceptions.py", line 71, in __call__
await self.app(scope, receive, sender)
File "/usr/local/lib/python3.7/site-packages/starlette/routing.py", line 580, in __call__
await route.handle(scope, receive, send)
File "/usr/local/lib/python3.7/site-packages/starlette/routing.py", line 390, in handle
await self.app(scope, receive, send)
File "/usr/local/lib/python3.7/site-packages/fastapi/applications.py", line 199, in __call__
await super().__call__(scope, receive, send)
File "/usr/local/lib/python3.7/site-packages/starlette/applications.py", line 112, in __call__
await self.middleware_stack(scope, receive, send)
File "/usr/local/lib/python3.7/site-packages/starlette/middleware/errors.py", line 181, in __call__
raise exc from None
File "/usr/local/lib/python3.7/site-packages/starlette/middleware/errors.py", line 159, in __call__
await self.app(scope, receive, _send)
File "/usr/local/lib/python3.7/site-packages/starlette/middleware/gzip.py", line 18, in __call__
await responder(scope, receive, send)
File "/usr/local/lib/python3.7/site-packages/starlette/middleware/gzip.py", line 35, in __call__
await self.app(scope, receive, self.send_with_gzip)
File "/usr/local/lib/python3.7/site-packages/starlette/exceptions.py", line 82, in __call__
raise exc from None
File "/usr/local/lib/python3.7/site-packages/starlette/exceptions.py", line 71, in __call__
await self.app(scope, receive, sender)
File "/usr/local/lib/python3.7/site-packages/starlette/routing.py", line 580, in __call__
await route.handle(scope, receive, send)
File "/usr/local/lib/python3.7/site-packages/starlette/routing.py", line 241, in handle
await self.app(scope, receive, send)
File "/usr/local/lib/python3.7/site-packages/starlette/routing.py", line 52, in app
response = await func(request)
File "/usr/local/lib/python3.7/site-packages/fastapi/routing.py", line 236, in app
is_coroutine=is_coroutine,
File "/usr/local/lib/python3.7/site-packages/fastapi/routing.py", line 130, in serialize_response
raise ValidationError(errors, field.type_)
pydantic.error_wrappers.ValidationError: 2 validation errors for RunInfoOut
response -> props -> tags -> 0 -> color
none is not an allowed value (type=type_error.none.not_allowed)
response -> props -> tags -> 0 -> description
none is not an allowed value (type=type_error.none.not_allowed)
To reproduce
Expected behavior
Environment
- Aim Version 3.14.0
- Python version 3.7.14
- pip version
- OS Docker image built on python:3.7
- Any other relevant information
Additional context
Metadata
Metadata
Assignees
Labels
area / SDK-storageIssue area: SDK and storage related issuesIssue area: SDK and storage related issueshelp wantedExtra attention is neededExtra attention is neededphase / shippedIssue phase: shippedIssue phase: shippedtype / bugIssue type: something isn't workingIssue type: something isn't working
Type
Projects
Status
Done