From 2944487613214b1aca43ae5cc134060ddda91e9b Mon Sep 17 00:00:00 2001 From: risto Date: Fri, 26 Jan 2024 10:45:56 +0100 Subject: [PATCH] feat(index): update user index staging flag Set the staging flag to True for the "user" index in the index.py file. --- tracardi/service/storage/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracardi/service/storage/index.py b/tracardi/service/storage/index.py index 23670a4fe..ee8552037 100644 --- a/tracardi/service/storage/index.py +++ b/tracardi/service/storage/index.py @@ -261,7 +261,7 @@ def __init__(self): partitioning=tracardi.field_change_log_partitioning, index="tracardi-field-update-log", mapping="mappings/field-update-log-index.json"), - "user": Index(staging=False, + "user": Index(staging=True, multi_index=False, index="tracardi-user", mapping="mappings/user-index.json"),