From 6b100a82b69a8b3a888a9b624b5fcc93686fc810 Mon Sep 17 00:00:00 2001 From: jbukhari Date: Wed, 3 Jul 2024 15:21:20 -0400 Subject: [PATCH] handle records with no user value --- dlx_dl/scripts/sync/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlx_dl/scripts/sync/__init__.py b/dlx_dl/scripts/sync/__init__.py index 78ca0a3..3c63d79 100644 --- a/dlx_dl/scripts/sync/__init__.py +++ b/dlx_dl/scripts/sync/__init__.py @@ -204,6 +204,9 @@ def run(**kwargs): Auth.build_cache() for i, record in enumerate(records.records): + if record.user is None: + record.user = 'system' + if record.user[:10] == 'batch_edit': # skip syncing batch edited records for now so as not to overwhelm DL queue continue