Skip to content

Commit

Permalink
fix: make resharding operations optional (#791)
Browse files Browse the repository at this point in the history
  • Loading branch information
joein authored Sep 24, 2024
1 parent 52d9697 commit 5b22703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qdrant_client/http/models/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class CollectionClusterInfo(BaseModel):
local_shards: List["LocalShardInfo"] = Field(..., description="Local shards")
remote_shards: List["RemoteShardInfo"] = Field(..., description="Remote shards")
shard_transfers: List["ShardTransferInfo"] = Field(..., description="Shard transfers")
resharding_operations: List["ReshardingInfo"] = Field(..., description="Resharding operations")
resharding_operations: Optional[List["ReshardingInfo"]] = Field(default=None, description="Resharding operations")


class CollectionConfig(BaseModel):
Expand Down

0 comments on commit 5b22703

Please sign in to comment.