error in build but not lock the flow

This commit is contained in:
Cayo Puigdefabregas 2024-10-30 15:17:15 +01:00
parent a5de0a92d8
commit 2636e80ece
1 changed files with 9 additions and 2 deletions

View File

@ -1,12 +1,15 @@
import os
import json
import logging
from django.core.management.base import BaseCommand
from django.contrib.auth import get_user_model
from evidence.parse import Build
logger = logging.getLogger('django')
User = get_user_model()
@ -47,4 +50,8 @@ class Command(BaseCommand):
def parsing(self):
for s in self.snapshots:
self.devices.append(Build(s, self.user))
try:
self.devices.append(Build(s, self.user))
except Exception as err:
logger.exception(err)