Skip to content

Commit

Permalink
Handle TypeError in Pci Requests
Browse files Browse the repository at this point in the history
Closes #59
  • Loading branch information
knikolla committed May 1, 2024
1 parent cb53f9f commit 6ef81e9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/openstack_billing_db/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
import datetime
from dataclasses import dataclass
from dataclasses_json import dataclass_json
import logging
import sqlite3
from typing import Optional

logger = logging.getLogger(__name__)


@dataclass_json()
@dataclass()
Expand Down Expand Up @@ -230,7 +233,13 @@ def get_instances(self, project) -> list[Instance]:
)

for instance in cursor.fetchall():
pci_info = json.loads(instance["pci_requests"])
try:
pci_info = json.loads(instance["pci_requests"])
except TypeError:
pci_info = None
logger.warning(
f"Could not parse pci requests from instance {instance}."
)
su_name = "cpu"
if pci_info:
# The PCI Requests column of the database contains a JSON
Expand Down

0 comments on commit 6ef81e9

Please sign in to comment.