Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion weaviate/collections/classes/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2118,7 +2118,8 @@ def multi_tenancy(
auto_tenant_creation: Automatically create nonexistent tenants during object creation. Defaults to `None`, which uses the server-defined default.
auto_tenant_activation: Automatically turn tenants implicitly HOT when they are accessed. Defaults to `None`, which uses the server-defined default.
"""
return _MultiTenancyConfigCreate(
ctor = _MultiTenancyConfigCreate
return ctor(
enabled=enabled,
autoTenantCreation=auto_tenant_creation,
autoTenantActivation=auto_tenant_activation,
Expand Down