From c2363d248bd9b1ea20e3cf6ff69039ed9fc715d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 22 Jul 2016 12:57:15 +0200 Subject: [PATCH] Settings sync: solved etag mismatch issue. This was caused by doing a cached request, which would always return the etag of the previous request. --- blender_cloud/pillar.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/blender_cloud/pillar.py b/blender_cloud/pillar.py index 8a13620..37ca1dc 100644 --- a/blender_cloud/pillar.py +++ b/blender_cloud/pillar.py @@ -856,7 +856,8 @@ async def attach_file_to_group(file_path: pathlib.Path, group_node_id, 'file', str(file_path), - extra_where=user_id and {'user': user_id}) + extra_where=user_id and {'user': user_id}, + caching=False) return node