julep icon indicating copy to clipboard operation
julep copied to clipboard

Validation error on getting session list

Open whiterabbit1983 opened this issue 1 year ago • 0 comments
trafficstars

ValidationError

1 validation error for Session
user_id
  UUID input should be a string, bytes or UUID object [type=uuid_type, input_value=None, input_type=NoneType]
    For further information visit https://errors.pydantic.dev/2.7/v/uuid_type

raised here (sessions/routers.py)

    return SessionList(

        items=[Session(**row.to_dict()) for _, row in query_results.iterrows()] # <--- exception here

    )

whiterabbit1983 avatar May 02 '24 09:05 whiterabbit1983