Skip to content
Snippets Groups Projects
Commit a3bfacea authored by Mattia Mancini's avatar Mattia Mancini
Browse files

Story OSB-11: fixing error in voltage

parent 463ac401
No related branches found
No related tags found
2 merge requests!89Monitoring maintenance Epic branch merge,!1Resolve OSB-13 "Monitoringmaintenance "
...@@ -63,7 +63,7 @@ class ErrorDetails(models.Model): ...@@ -63,7 +63,7 @@ class ErrorDetails(models.Model):
rcu5_0v = models.FloatField(default=None, null=True) rcu5_0v = models.FloatField(default=None, null=True)
lba8_0v = models.FloatField(default=None, null=True) lba8_0v = models.FloatField(default=None, null=True)
hba_48v = models.FloatField(default=None, null=True) hba48v = models.FloatField(default=None, null=True)
spu3_3v = models.FloatField(default=None, null=True) spu3_3v = models.FloatField(default=None, null=True)
v1_2 = models.FloatField(default=None, null=True) v1_2 = models.FloatField(default=None, null=True)
......
...@@ -22,6 +22,9 @@ def parse_key_value_pairs(content): ...@@ -22,6 +22,9 @@ def parse_key_value_pairs(content):
if re.match('\A\d*\.\d*', key): if re.match('\A\d*\.\d*', key):
key = 'v' + key.strip('V') key = 'v' + key.strip('V')
if re.match('\A\w*-\d*.\d*', key):
key = key.replace('-', '')
key = re.sub('([.-])', '_', key).lower() key = re.sub('([.-])', '_', key).lower()
return {key: value} return {key: value}
......
...@@ -108,17 +108,17 @@ def insert_component_error(station_test_entry, ...@@ -108,17 +108,17 @@ def insert_component_error(station_test_entry,
component_entry = Component.objects.filter(station=station_entry, component_entry = Component.objects.filter(station=station_entry,
**component).first() **component).first()
if component_entry is None: if component_entry is None:
print('Component entry is not present, inserting ...') logger.debug('Component entry is not present, inserting ...')
component_entry = Component(station=station_entry, component_entry = Component(station=station_entry,
**component) **component)
print(component_entry, component_error) logger.debug(component_entry, component_error)
component_entry.save() component_entry.save()
component_error_entry = ComponentError.objects.filter(component=component_entry, component_error_entry = ComponentError.objects.filter(component=component_entry,
station_test=station_test_entry, station_test=station_test_entry,
**component_error).first() **component_error).first()
if component_error_entry is None: if component_error_entry is None:
print('Component error entry is not present, inserting ...') logger.debug('Component error entry is not present, inserting ...')
if component_error_details: if component_error_details:
component_error_details_entry = ErrorDetails(**component_error_details) component_error_details_entry = ErrorDetails(**component_error_details)
component_error_details_entry.save() component_error_details_entry.save()
...@@ -204,13 +204,13 @@ def insert_station_test(station_test): ...@@ -204,13 +204,13 @@ def insert_station_test(station_test):
station_entry = Station.objects.filter(**station).first() station_entry = Station.objects.filter(**station).first()
if station_entry is None: if station_entry is None:
print('Station is not present, inserting ...') logger.debug('Station is not present, inserting ...')
station_entry = Station(**station) station_entry = Station(**station)
station_entry.save() station_entry.save()
station_test_entry = StationTest.objects.filter(**station_test).first() station_test_entry = StationTest.objects.filter(**station_test).first()
if station_test_entry is None: if station_test_entry is None:
print('Station test is not present, inserting ...') logger.debug('Station test is not present, inserting ...')
station_test_entry = StationTest(station=station_entry, station_test_entry = StationTest(station=station_entry,
**station_test) **station_test)
station_test_entry.save() station_test_entry.save()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment