diff options
Diffstat (limited to 'fixco_custom/models/webhook_ginee.py')
| -rwxr-xr-x | fixco_custom/models/webhook_ginee.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fixco_custom/models/webhook_ginee.py b/fixco_custom/models/webhook_ginee.py index 444306b..fb1bbf6 100755 --- a/fixco_custom/models/webhook_ginee.py +++ b/fixco_custom/models/webhook_ginee.py @@ -20,7 +20,7 @@ class WebhookGinee(models.Model): ], 'Execute Status') def process_queue_item(self, limit=100, max_exec_time=30): - domain = [('execute_status', '=', False)] + domain = [('execute_status', '=', False), ('json_ginee', 'not ilike', 'BLIBLI_ID')] records = self.search(domain, order='create_date asc', limit=limit) start_time = time.time() for rec in records: |
