Skip to content

Commit

Permalink
Revert "always update Pub/Sub links to GBs (#23)"
Browse files Browse the repository at this point in the history
This reverts commit c14cff0.
  • Loading branch information
tomkralidis committed Nov 6, 2024
1 parent c14cff0 commit e1085ef
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions wis2-gdc-management/wis2_gdc/registrar.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,9 @@ def register(self, metadata: Union[dict, str], topic: str = None) -> None:
self._process_record_metric(
self.metadata['id'], f'{data_policy}_total', centre_id_labels)

LOGGER.info('Updating links')
self.update_record_links(data_policy)
if data_policy == 'core':
LOGGER.info('Core data detected: updating links')
self.update_record_links()

LOGGER.info('Publishing metadata to backend')
self._publish()
Expand Down Expand Up @@ -359,7 +360,7 @@ def _publish(self):
LOGGER.info(f'Saving to {BACKEND_TYPE} ({BACKEND_CONNECTION})')
self.backend.save_record(self.metadata)

def update_record_links(self, data_policy: str) -> None:
def update_record_links(self) -> None:
"""
Update Global Service links
Expand All @@ -378,15 +379,11 @@ def is_wis2_mqtt_link(link) -> bool:
for count, value in enumerate(self.metadata['links']):
if is_wis2_mqtt_link(value):
LOGGER.debug('Adjusting MQTT link')
channel = value.get('channel', value.get('wmo:topic'))
channel = value.get('wmo:topic', value.get('channel'))

new_link = value
_ = new_link.pop('wmo:topic', None)

if data_policy == 'core':
LOGGER.debug('Adjusting channel origin to cache')
new_link['channel'] = channel.replace('origin', 'cache')

new_link['rel'] = 'items'
new_link['channel'] = channel.replace('origin', 'cache')
new_link['type'] = 'application/geo+json'
Expand Down

0 comments on commit e1085ef

Please sign in to comment.