From cab444f8fa60839cb6043dde5bca9306c91d9921 Mon Sep 17 00:00:00 2001 From: JP Hwang Date: Fri, 21 Jun 2024 15:01:39 +0100 Subject: [PATCH] update multi_tenancy docstring to reflect auto_tenant_creation also being available for single inserts --- weaviate/collections/classes/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weaviate/collections/classes/config.py b/weaviate/collections/classes/config.py index e0b7700e3..3b6c82f43 100644 --- a/weaviate/collections/classes/config.py +++ b/weaviate/collections/classes/config.py @@ -1764,7 +1764,7 @@ def multi_tenancy( `enabled` Whether multi-tenancy is enabled. Defaults to `True`. `auto_tenant_creation` - Automatically create nonexistent tenants during batch import. Defaults to `None`, which uses the server-defined default. + 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. """ @@ -1998,7 +1998,7 @@ def multi_tenancy( Arguments: `auto_tenant_creation` - When set, implicitly creates nonexisting tenants during batch imports + When set, implicitly creates nonexistent tenants during object creation `auto_tenant_activation` Automatically turn tenants implicitly HOT when they are accessed. Defaults to `None`, which uses the server-defined default. """