Skip to content

Commit a9c8b90

Browse files
committed
Backward compatibility
1 parent 1bb51a5 commit a9c8b90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

weaviate/collections/grpc/tenants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async def get(self, names: Optional[Sequence[str]]) -> tenants_pb2.TenantsGetRep
3838
timeout=self._connection.timeout_config.query,
3939
)
4040
except AioRpcError as e:
41-
raise WeaviateTenantGetError(str(e))
41+
raise WeaviateTenantGetError(str(e)) from e
4242

4343
return cast(tenants_pb2.TenantsGetReply, res)
4444

0 commit comments

Comments
 (0)